diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-05-27 23:04:29 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-05-27 23:04:29 +0000 |
commit | d95ad6fdaf912900d1cfb219cdc3938d870dc60f (patch) | |
tree | 7101f1d621cab218ee55d1b8e7a98de08c11410a | |
parent | 2890dca535e06dc87a9e2a2beb3af3eed1524935 (diff) |
orinoco-0.13e: fix permissions for modules
BKrev: 40b673fdu4915VDZ7mcovoE8lWipUQ
-rw-r--r-- | orinoco/orinoco-modules_0.13e.oe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/orinoco/orinoco-modules_0.13e.oe b/orinoco/orinoco-modules_0.13e.oe index 01d44e5907..48f11c7672 100644 --- a/orinoco/orinoco-modules_0.13e.oe +++ b/orinoco/orinoco-modules_0.13e.oe @@ -2,7 +2,7 @@ DESCRIPTION = "A driver for wireless LAN cards based on Hermes(Orinoco) cards. \ Also contains support for cards using downloadable firmware, i.e. the Symbol/Socket family." SECTION = "base" PRIORITY = "optional" -MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" LICENSE = "GPL" SRC_URI = "http://ozlabs.org/people/dgibson/dldwd/orinoco-${PV}.tar.gz; \ @@ -20,7 +20,7 @@ do_compile_prepend() { do_install() { install -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/net/wireless install -d ${D}/etc/pcmcia - install -m 0755 *.o ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/net/wireless/ + install -m 0644 *.o ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/net/wireless/ install -m 0644 spectrum.conf ${D}/etc/pcmcia/ install -m 0644 hermes.conf ${D}/etc/pcmcia/ } |