diff options
author | Phil Blundell <philb@gnu.org> | 2004-11-22 22:05:15 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-11-22 22:05:15 +0000 |
commit | 1be2ac4006770bf1d3a30ba3965d2edc45e49bc1 (patch) | |
tree | 765effa3fd9b8128f37e62793fe6d99c1da67937 | |
parent | bf730dc5561fd885ef2ecd2b2413064797c500f1 (diff) |
add /etc/modutils/orinoco_cs.conf to orinoco-modules
BKrev: 41a2629bg-ZTytjrE54LjW2TBWbuIQ
-rw-r--r-- | orinoco/files/orinoco_cs.conf | 0 | ||||
-rw-r--r-- | orinoco/orinoco-modules_0.15rc2.oe | 8 |
2 files changed, 6 insertions, 2 deletions
diff --git a/orinoco/files/orinoco_cs.conf b/orinoco/files/orinoco_cs.conf new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/orinoco/files/orinoco_cs.conf diff --git a/orinoco/orinoco-modules_0.15rc2.oe b/orinoco/orinoco-modules_0.15rc2.oe index 047d11257e..9535ce7cf6 100644 --- a/orinoco/orinoco-modules_0.15rc2.oe +++ b/orinoco/orinoco-modules_0.15rc2.oe @@ -5,13 +5,14 @@ PRIORITY = "optional" PROVIDES = "spectrum-modules" MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" LICENSE = "GPL" -PR = "r0" +PR = "r1" SRC_URI = "http://ozlabs.org/people/dgibson/dldwd/orinoco-${PV}.tar.gz \ file://list-move.patch;patch=1 \ file://spectrum-firmware.patch;patch=1 \ file://spectrum.conf \ - file://spectrum_fw.h" + file://spectrum_fw.h \ + file://orinoco_cs.conf" S = "${WORKDIR}/orinoco-${PV}" inherit module @@ -26,4 +27,7 @@ do_install() { install -m 0644 *.o ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/net/wireless/ install -m 0644 ${WORKDIR}/spectrum.conf ${D}/etc/pcmcia/ install -m 0644 hermes.conf ${D}/etc/pcmcia/ + install -d ${D}/etc/modutils + install -m 0644 ${WORKDIR}/orinoco_cs.conf ${D}/etc/modutils/ } + |