Added support for building/installing separate modules for STA and
AP functionality.
This commit is contained in:
parent
31f2277635
commit
3bbd74ee16
|
@ -267,6 +267,11 @@ ask_str "Install drivers as (sta or ap)" WLAN_INSTALL_TYPE
|
|||
WLAN_TARGET_ARCH=$BUILD_ARCH
|
||||
ask_str "Target Architecture?(only change if cross-compiling)" WLAN_TARGET_ARCH
|
||||
|
||||
#=======================================================================
|
||||
# Make sure our target architecture is the same as our build architecture.
|
||||
|
||||
ask_bool "Build for debugging (see doc/config.debug)" WLAN_DEBUG
|
||||
|
||||
#=======================================================================
|
||||
|
||||
mv $CONFIG config.out
|
||||
|
|
|
@ -9,4 +9,4 @@ PCMCIA_DIR=/etc/pcmcia
|
|||
SYSV_INIT=y
|
||||
INSTALL_DEPMOD=y
|
||||
WLAN_INSTALL_TYPE=sta
|
||||
WLAN_TARGET_ARCH=y
|
||||
WLAN_DEBUG=n
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
|
||||
device "prism2sta_cs"
|
||||
class "wlan-ng" module "prism2sta_cs"
|
||||
device "prism2_cs"
|
||||
class "wlan-ng" module "prism2_cs"
|
||||
|
||||
card "Intersil Prism2 Ref. Card"
|
||||
manfid 0x0156, 0x0002
|
||||
bind "prism2sta_cs"
|
||||
bind "prism2_cs"
|
||||
|
||||
card "Compaq WL100 11Mb/s WLAN Card"
|
||||
manfid 0x0138, 0x0002
|
||||
bind "prism2sta_cs"
|
||||
bind "prism2_cs"
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
|
||||
include ../../config.mk
|
||||
|
||||
DIRS = sta_cs download ridlist
|
||||
DIRS = driver download ridlist
|
||||
|
||||
all:
|
||||
set -e; for d in $(DIRS); do $(MAKE) -C $$d ; done
|
||||
|
|
Loading…
Reference in a new issue