Added support for building/installing separate modules for STA and

AP functionality.
This commit is contained in:
mark 2000-03-14 02:40:30 +00:00
parent 31f2277635
commit 3bbd74ee16
4 changed files with 11 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -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"

View file

@ -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