1config BR2_PACKAGE_WF111 2 bool "wf111" 3 depends on BR2_LINUX_KERNEL 4 depends on BR2_ARM_CPU_ARMV5 || BR2_ARM_CPU_ARMV7A || BR2_i386 5 # Binary tools are distributed alongside the driver, and are 6 # dynamically linked against the glibc. 7 depends on BR2_TOOLCHAIN_USES_GLIBC 8 help 9 Silicon Labs WF111 WiFi driver and utilities. 10 11 Warning: CONFIG_WIRELESS_EXT and CONFIG_WEXT_PRIV must be 12 selected in the Linux kernel configuration. These are blind 13 options (i.e. not selectable directly) so they cannot be 14 enabled by a change in linux/linux.mk. There are two choices 15 to enable these options: 16 - By making them non blind, with a "WF111 support" 17 configuration entry that selects them, for example. 18 - By enabling another random WiFi driver that select them. 19 20 https://www.silabs.com/wireless/wi-fi/bluegiga-legacy-modules/device.wf111 21 22comment "wf111 needs a Linux kernel to be built" 23 depends on !BR2_LINUX_KERNEL 24 depends on BR2_ARM_CPU_ARMV5 || BR2_ARM_CPU_ARMV7A || BR2_i386 25 26comment "wf111 needs a glibc toolchain" 27 depends on BR2_LINUX_KERNEL 28 depends on BR2_ARM_CPU_ARMV5 || BR2_ARM_CPU_ARMV7A || BR2_i386 29 depends on !BR2_TOOLCHAIN_USES_GLIBC 30