diff options
-rw-r--r-- | bin/reproducible_lede_common.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bin/reproducible_lede_common.sh b/bin/reproducible_lede_common.sh index 4921ea72..c2cbf441 100644 --- a/bin/reproducible_lede_common.sh +++ b/bin/reproducible_lede_common.sh @@ -195,8 +195,7 @@ openwrt_config() { CONFIG=$1 printf "$CONFIG" > .config - # don't build all packages to improve development speed - # printf "CONFIG_ALL=y\n" >> .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 @@ -288,8 +287,8 @@ openwrt_download() { openwrt_create_signing_keys # update feeds - ./scripts/feeds update - ./scripts/feeds install -a + #./scripts/feeds update + #./scripts/feeds install -a # configure openwrt because otherwise it wont download everything openwrt_config $CONFIG |