add /etc/modutils bits
authorPhil Blundell <philb@gnu.org>
Mon, 30 Aug 2004 12:13:44 +0000 (12:13 +0000)
committerPhil Blundell <philb@gnu.org>
Mon, 30 Aug 2004 12:13:44 +0000 (12:13 +0000)
BKrev: 413319f8g4D7eS0zBqd9Uij9y1fziw

at76c503a/at76c503a-modules_cvs.oe

index d4741d9..e15333e 100644 (file)
@@ -1,13 +1,32 @@
 SRC_URI = "cvs://anonymous@cvs.berlios.de/cvsroot/at76c503a;module=at76c503a \
        file://ipaq.patch;patch=1;pnum=0"
 S = "${WORKDIR}/at76c503a"
+PR = "r1"
 
 inherit module
 
 MODULES = at76c503.o at76_usbdfu.o at76c503-i3861.o at76c503-rfmd.o at76c503-rfmd-acc.o \
           at76c505-rfmd.o at76c503-i3863.o at76c505-rfmd2958.o
 
+pkg_postinst() {
+#!/bin/sh
+if [ "x$D" != "x" ]; then
+  exit 1
+fi
+update-modules || true
+}
+
+pkg_postrm() {
+#!/bin/sh
+update-modules || true
+}
+
 do_install() {
        install -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/usb/
        for i in ${MODULES}; do install -m 0644 $i ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/usb/$i; done
+
+       if [ "${MACHINE}" = "h3900" ]; then
+               install -d ${D}/etc/modutils
+               echo "at76c503-rfmd" > ${D}/etc/modutils/at76c503-rfmd
+       fi
 }