diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2017-06-09 13:32:56 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-06-09 13:36:38 +0200 |
commit | 0aed29c2c17e5296ea520f31d1e83b523975de24 (patch) | |
tree | 1211a54e000ca05fa1a0f1a89e91bbe2339b71cb /bin | |
parent | 5fd27f23dd95fc7a8e2e5ba8c046fc17e3a2ec29 (diff) | |
download | jenkins.debian.net-0aed29c2c17e5296ea520f31d1e83b523975de24.tar.xz |
reproducible_lede_common: don't build all packages
improves our development speed for now. We will re-enable it
to get cover more packages and targets
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-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 d465a0b4..87a6c53d 100644 --- a/bin/reproducible_lede_common.sh +++ b/bin/reproducible_lede_common.sh @@ -194,7 +194,8 @@ openwrt_config() { CONFIG=$1 printf "$CONFIG" > .config - printf "CONFIG_ALL=y\n" >> .config + # don't build all packages to improve development speed + # 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 |