summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2015-10-21 17:47:23 -0700
committerHolger Levsen <holger@layer-acht.org>2015-10-21 19:58:01 -0500
commit14262f208aa640380b3aff295e975ebfa5573e4f (patch)
treeff1dbc882bfdd305c08adf230e260e9120c5cc7f
parentb0eed42c569582facfb3078dfa04669155fef84a (diff)
downloadjenkins.debian.net-14262f208aa640380b3aff295e975ebfa5573e4f.tar.xz
openwrt: add CLEAN_IPKG and always build *rootfs.tar.gz
-rwxr-xr-xbin/reproducible_openwrt.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh
index 469c1775..d344ae25 100755
--- a/bin/reproducible_openwrt.sh
+++ b/bin/reproducible_openwrt.sh
@@ -54,7 +54,9 @@ openwrt_config() {
CONFIG=$1
printf "$CONFIG" > .config
- printf "CONFIG_ALL=y" >> .config
+ printf "CONFIG_ALL=y\n" >> .config
+ printf "CONFIG_CLEAN_IPKG=y\n" >> .config
+ printf "CONFIG_TARGET_ROOTFS_TARGZ=y\n" >> .config
make defconfig
}