diff options
author | Xu Wang <xwang1498@gmx.com> | 2020-02-08 23:04:11 +0000 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-02-27 12:14:09 +0100 |
commit | 2299808c68cbaf2bbdde31073c5e887cd62874dc (patch) | |
tree | 2a4601fdf35e6e47205b3ac1d0f8a7fae08af678 /package/base-files/Makefile | |
parent | 35890514bb191de3ab96dcd684714850a9142efc (diff) | |
download | upstream-2299808c68cbaf2bbdde31073c5e887cd62874dc.tar.gz upstream-2299808c68cbaf2bbdde31073c5e887cd62874dc.tar.bz2 upstream-2299808c68cbaf2bbdde31073c5e887cd62874dc.zip |
base-files: add all buildinfo with INCLUDE_CONFIG
CONFIG_INCLUDE_CONFIG option is helpful for being able to rebuild the
exact same firmware as you see on a live OpenWRT instance, but it's
crucially missing feeds information, so we can't rebuild the exact same
package versions. This commit fixes this by adding the remaining feeds
(and version) buildinfo files to the image.
Signed-off-by: Xu Wang <xwang1498@gmx.com>
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 18325564dc..4f4e93361f 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -198,7 +198,9 @@ define Package/base-files/install $(if $(CONFIG_INCLUDE_CONFIG), \ echo -e "# Build configuration for board $(BOARD)/$(SUBTARGET)/$(PROFILE)\n" >$(1)/etc/build.config; \ - cat $(BIN_DIR)/config.buildinfo >>$(1)/etc/build.config) + cat $(BIN_DIR)/config.buildinfo >>$(1)/etc/build.config; \ + cat $(BIN_DIR)/feeds.buildinfo >>$(1)/etc/build.feeds; \ + cat $(BIN_DIR)/version.buildinfo >>$(1)/etc/build.version) $(if $(CONFIG_CLEAN_IPKG),, \ mkdir -p $(1)/etc/opkg; \ |