Commit 4a97c4c0 authored by lynxis lazus's avatar lynxis lazus Committed by Holger Levsen
Browse files

reproducible OpenWrt: add workaround for an OpenWrt build system bug



The OpenWrt build system have a bug with iw when using CONFIG_ALL=y and
selecting iw as dependency (over target dependencies).

Signed-off-by: default avatarHolger Levsen <holger@layer-acht.org>
parent a1e9c8c6
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -229,6 +229,11 @@ openwrt_config() {
	printf "CONFIG_TARGET_ROOTFS_TARGZ=y\n" >> .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).
	printf 'CONFIG_PACKAGE_iw=y\n' >> .config
	make defconfig
}