diff options
author | Reiner Herrmann <reiner@reiner-h.de> | 2015-08-03 20:00:52 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-03 20:02:52 +0200 |
commit | 8ea330e9df295630bb8167fb6211be164dd8fc8c (patch) | |
tree | cd298ab759ecab52372fb07786f8b05aee155712 /bin | |
parent | d57ec0028118b6f4436b4d10530ce1957e4b293e (diff) | |
download | jenkins.debian.net-8ea330e9df295630bb8167fb6211be164dd8fc8c.tar.xz |
reproducible openwrt: disable external feeds which probably break building
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_openwrt.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh index d22a22b2..bef59f37 100755 --- a/bin/reproducible_openwrt.sh +++ b/bin/reproducible_openwrt.sh @@ -157,11 +157,12 @@ echo "This is openwrt $OPENWRT_VERSION." echo git log -1 -echo "=============================================================================" -echo "$(date -u) - Updating package feeds." -echo "=============================================================================" -./scripts/feeds update -a -./scripts/feeds install -a +# External feeds disabled for now as they break building (especially with CONFIG_ALL=y). +#echo "=============================================================================" +#echo "$(date -u) - Updating package feeds." +#echo "=============================================================================" +#./scripts/feeds update -a +#./scripts/feeds install -a build_two_times ar71xx_generic_ARCHERC7 "CONFIG_TARGET_ar71xx_generic=y\nCONFIG_TARGET_ar71xx_generic_ARCHERC7=y\n" build_two_times x86_64 "CONFIG_TARGET_x86=y\nCONFIG_TARGET_x86_64=y\n" |