From: David Ward Date: Thu, 30 Dec 2010 21:42:55 +0000 (-0500) Subject: compat-wireless: fix driver-select for iwl3945/iwlagn X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=9827e526a421d50580c7dcdd245c95b4812cff52;p=openwrt%2Fstaging%2Fblogic.git compat-wireless: fix driver-select for iwl3945/iwlagn The iwl3945/iwlagn drivers were never built when choosing the "intel" or "iwlwifi" options with the driver-select script. (Note that this currently affects all stable releases of compat-wireless as well.) Signed-off-by: David Ward --- diff --git a/scripts/driver-select b/scripts/driver-select index 3989b9f11ab1..0d5a38b69119 100755 --- a/scripts/driver-select +++ b/scripts/driver-select @@ -318,13 +318,13 @@ case $1 in disable_var_01 ;; intel) - select_drivers CONFIG_IWLWIFI \ + select_drivers CONFIG_COMPAT_IWLWIFI \ CONFIG_IPW disable_staging disable_var ;; iwlwifi) - select_driver CONFIG_IWLWIFI + select_driver CONFIG_COMPAT_IWLWIFI disable_staging disable_var_01 ;;