diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/orinoco/orinoco-modules-0.13e/crosscompile.patch | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/orinoco/orinoco-modules-0.13e/crosscompile.patch')
-rw-r--r-- | recipes/orinoco/orinoco-modules-0.13e/crosscompile.patch | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/recipes/orinoco/orinoco-modules-0.13e/crosscompile.patch b/recipes/orinoco/orinoco-modules-0.13e/crosscompile.patch new file mode 100644 index 0000000000..5963e931c2 --- /dev/null +++ b/recipes/orinoco/orinoco-modules-0.13e/crosscompile.patch @@ -0,0 +1,48 @@ +--- 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 $< |