theBS's patch for installing the INSTFIXED scripts for USB and for

making the /etc stuff installed relative to TARGET_ROOT_ON_HOST.
This commit is contained in:
mark 2001-12-13 19:34:48 +00:00
parent 720536f381
commit b130bb7df8
3 changed files with 16 additions and 4 deletions

View File

@ -42,6 +42,8 @@
*
* --------------------------------------------------------------------
0.1.13
- Added theBS's patch for making the /etc stuff installation relative and
installing the FIXINST scripts for USB.
- Added crankin's SMP deadlock fix patch.
0.1.12
- Added dlyddy's string.h includes and comma fix. Changing all malloc.h's

1
THANKS
View File

@ -61,6 +61,7 @@ Michael Carmack <karmak@karmak.org>
Mark Taylor <mt@mp3dev.org>
Ben Gertzfield <che@debian.org>
Daniel Lyddy <sprocket@path.berkeley.edu>
Bryan Smith <b.j.smith@ieee.org>
[Many, many more. If I've overlooked you and you want to be listed here,
send me e-mail and I'll fix it. I _know_ a bunch of linux-wlan contributors

View File

@ -50,6 +50,9 @@ endif
ifeq ($(PRISM2_PCI), y)
INSTFIXED=y
endif
ifeq ($(PRISM2_USB), y)
INSTFIXED=y
endif
ifeq (,$(RC_DIR))
INSTFIXED=n
endif
@ -65,8 +68,14 @@ clean:
install:
set -e; for d in $(DIRS); do $(MAKE) -C $$d install; done
ifeq ($(INSTFIXED), y)
cp rc.wlan $(RC_DIR)/init.d/wlan
chmod 755 $(RC_DIR)/init.d/wlan
cp wlan.conf /etc
chmod 700 /etc/wlan.conf
if [ ! -d $(TARGET_ROOT_ON_HOST)$(RC_DIR)/init.d ]; then \
mkdir -p $(TARGET_ROOT_ON_HOST)$(RC_DIR)/init.d; \
fi; \
cp rc.wlan $(TARGET_ROOT_ON_HOST)$(RC_DIR)/init.d/wlan; \
chmod 755 $(TARGET_ROOT_ON_HOST)$(RC_DIR)/init.d/wlan ;\
if [ ! -d $(TARGET_ROOT_ON_HOST)/etc ]; then \
mkdir -p $(TARGET_ROOT_ON_HOST)/etc; \
fi; \
cp wlan.conf $(TARGET_ROOT_ON_HOST)/etc; \
chmod 700 $(TARGET_ROOT_ON_HOST)/etc/wlan.conf
endif