diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2017-06-09 01:02:12 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-06-09 02:45:28 +0200 |
commit | 5fd27f23dd95fc7a8e2e5ba8c046fc17e3a2ec29 (patch) | |
tree | 5e28663319a5fb467e042c656a6e58bb163ea01d | |
parent | 9064f6e953bd426a26d4a4a13e357d897ac3b841 (diff) | |
download | jenkins.debian.net-5fd27f23dd95fc7a8e2e5ba8c046fc17e3a2ec29.tar.xz |
reproducible_lede: set CONFIG_AUTOREMOVE to reduce required space
When CONFIG_AUTOREMOVE is set, LEDE will remove the build_dir
of a package after it has been build.
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rw-r--r-- | bin/reproducible_lede_common.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/reproducible_lede_common.sh b/bin/reproducible_lede_common.sh index 60fbe3db..d465a0b4 100644 --- a/bin/reproducible_lede_common.sh +++ b/bin/reproducible_lede_common.sh @@ -195,6 +195,7 @@ openwrt_config() { printf "$CONFIG" > .config printf "CONFIG_ALL=y\n" >> .config + printf "CONFIG_AUTOREMOVE=y\n" >> .config printf "CONFIG_CLEAN_IPKG=y\n" >> .config printf "CONFIG_TARGET_ROOTFS_TARGZ=y\n" >> .config make defconfig |