summaryrefslogtreecommitdiff
path: root/orinoco/orinoco-modules-0.13e/crosscompile.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /orinoco/orinoco-modules-0.13e/crosscompile.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'orinoco/orinoco-modules-0.13e/crosscompile.patch')
-rw-r--r--orinoco/orinoco-modules-0.13e/crosscompile.patch48
1 files changed, 0 insertions, 48 deletions
diff --git a/orinoco/orinoco-modules-0.13e/crosscompile.patch b/orinoco/orinoco-modules-0.13e/crosscompile.patch
deleted file mode 100644
index 5963e931c2..0000000000
--- a/orinoco/orinoco-modules-0.13e/crosscompile.patch
+++ /dev/null
@@ -1,48 +0,0 @@
---- orinoco-0.13e/Makefile~crosscompile 2003-05-12 08:22:27.000000000 +0200
-+++ orinoco-0.13e/Makefile 2003-06-15 18:17:21.000000000 +0200
-@@ -19,7 +19,7 @@
- endif
- endif
-
--MODULES = hermes.o orinoco.o orinoco_cs.o orinoco_plx.o orinoco_tmd.o orinoco_pci.o
-+MODULES = hermes.o orinoco.o orinoco_cs.o orinoco_plx.o orinoco_tmd.o orinoco_pci.o spectrum_cs.o
- ifeq ($(shell uname -m),ppc)
- MODULES += airport.o
- endif
-@@ -27,9 +27,9 @@
- SRCS = hermes.c \
- orinoco.c \
- airport.c orinoco_cs.c orinoco_plx.c orinoco_tmd.c orinoco_pci.c \
-- userhermes.c
-+ userhermes.c spectrum_cs.c
- HDRS = hermes.h hermes_rid.h ieee802_11.h orinoco.h
--CONF = hermes.conf
-+CONF = hermes.conf spectrum.conf
- TAR = tar
-
- DISTFILES = $(SRCS) $(HDRS) $(CONF) Makefile README.orinoco
-@@ -41,7 +41,7 @@
- all: modules
-
- installconf:
-- if [ -d $(CONF_DIR) ]; then install -m 644 -o 0 -g 0 $(CONF) $(CONF_DIR)/$(CONF); fi
-+ if [ -d $(CONF_DIR) ]; then install -m 644 $(CONF) $(CONF_DIR)/; fi
-
-
- userhermes: userhermes.c
-@@ -118,12 +118,12 @@
- mkdir -p $(MODULE_DIR_WIRELESS)
- for f in $(MODULES); do \
- if test -e $(MODULE_DIR_PCMCIA)/$$f; then \
-- install -m 644 -o 0 -g 0 $$f $(MODULE_DIR_PCMCIA)/$$f; \
-+ install -m 644 $$f $(MODULE_DIR_PCMCIA)/$$f; \
- else \
-- install -m 644 -o 0 -g 0 $$f $(MODULE_DIR_WIRELESS)/$$f; \
-+ install -m 644 $$f $(MODULE_DIR_WIRELESS)/$$f; \
- fi; \
- done
-- depmod -a
-+ #depmod -a
-
- %.o: %.c
- $(CC) -MD $(CFLAGS) $(CPPFLAGS) $(MFLAG) -c $<