Skip to content

Commits on Source 2

......@@ -239,9 +239,7 @@ openwrt_config() {
printf 'CONFIG_KERNEL_BUILD_USER="openwrt"\n' >> .config
printf 'CONFIG_KERNEL_BUILD_DOMAIN="buildhost"\n' >> .config
# WORKAROUND: TODO FIXME
# The OpenWrt build system have a bug with iw when using CONFIG_ALL=y and
# selecting iw as dependency (over target dependencies).
# WORKAROUND/FIXME: the OpenWrt build system has a bug with iw when using CONFIG_ALL=y and selecting iw as dependency (over target dependencies).
printf 'CONFIG_PACKAGE_iw=y\n' >> .config
make defconfig
}
......@@ -331,9 +329,8 @@ openwrt_download() {
openwrt_create_signing_keys
# update feeds
#FIXME: temporarily disable building all packages
#./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"
......