-pre18, fix up more Makefile wonkiness.

This commit is contained in:
solomon 2004-02-09 19:52:19 +00:00
parent 2e7c9fd87e
commit 7880b16ba1
3 changed files with 4 additions and 18 deletions

View File

@ -41,8 +41,9 @@
* Intersil Corporation as part of PRISM(R) chipset product development.
*
* --------------------------------------------------------------------
- We weren't properly building prism2dl
- Get rid of the txfid lock.
-pre18
- Fix broken makefiles so that prism2dl and the rc script install
- Get rid of the txfid lock, it's not necessary.
- Tasklet-driven RX handlers.
- Further work towards a Wireless Extension-enabled future.
- SIWFRAG, SIWRETRY, SIWFREQ, SIWRTS implemented

View File

@ -1,7 +1,7 @@
WLAN_VERSION=0
WLAN_PATCHLEVEL=2
WLAN_SUBLEVEL=1
WLAN_EXTRAVERSION=-pre17
WLAN_EXTRAVERSION=-pre18
LINUX_SRC=/usr/src/linux
PCMCIA_SRC=
PREFIX=

View File

@ -44,19 +44,6 @@
include ../config.mk
ifeq ($(PRISM2_PLX), y)
INSTFIXED=y
endif
ifeq ($(PRISM2_PCI), y)
INSTFIXED=y
endif
ifeq ($(PRISM2_USB), y)
INSTFIXED=y
endif
ifeq (,$(RC_DIR))
INSTFIXED=n
endif
DIRS= pcmcia wlan
all:
@ -67,7 +54,6 @@ clean:
install:
set -e; for d in $(DIRS); do $(MAKE) -C $$d install; done
ifeq ($(INSTFIXED), y)
if [ ! -d $(TARGET_ROOT_ON_HOST)$(RC_DIR)/init.d ]; then \
mkdir -p $(TARGET_ROOT_ON_HOST)$(RC_DIR)/init.d; \
fi; \
@ -79,4 +65,3 @@ ifeq ($(INSTFIXED), y)
rm -f $(TARGET_ROOT_ON_HOST)/etc/hotplug/pci/prism2_pci; \
rm -f $(TARGET_ROOT_ON_HOST)/etc/hotplug/pci/prism2_plx; \
fi
endif