diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2017-11-03 18:33:26 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-11-03 18:50:01 +0100 |
commit | 7762882724ce0f80674d9db624f72479a029d5c0 (patch) | |
tree | bd534e4928871da47d6a261f3a4ae9c628628bdf | |
parent | db21878f6026e8c6f67a19da4ff6b7f0fab61bc9 (diff) | |
download | jenkins.debian.net-7762882724ce0f80674d9db624f72479a029d5c0.tar.xz |
reproducible_lede: disable building all packages again
Testing new modification is faster without rebuilding everything
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rw-r--r-- | bin/reproducible_lede_common.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_lede_common.sh b/bin/reproducible_lede_common.sh index 58b3d3f4..c4f659f9 100644 --- a/bin/reproducible_lede_common.sh +++ b/bin/reproducible_lede_common.sh @@ -233,7 +233,8 @@ openwrt_config() { CONFIG=$1 printf "$CONFIG\n" | grep '^[^ ]' > .config - printf "CONFIG_ALL=y\n" >> .config + # build all packages + # 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 |