into home.hrw.one.pl:/home/hrw/zaurus/bb/openembedded
2004/12/23 12:27:55+01:00 hrw.one.pl!hrw
fixed module permissions in changedfiles-modules
BKrev: 41caabc913p28R_JLF3aMmVOF2jxlA
+include changedfiles.inc
+
+PR = "r1"
+B = "${WORKDIR}/changedfiles-${PV}/module"
+
+inherit module
+
+do_compile() {
+ ${CC} -Wall -DMODULE -D__KERNEL__ -I${STAGING_KERNEL_DIR}/include -c changedfiles.c
+}
+
+pkg_postinst() {
+#!/bin/sh
+if [ -n $D ]; then exit 1; fi
+/bin/mknod /dev/changedfiles c 40 0; exit 0
+chmod 0600 /dev/changedfiles
+}
+
+pkg_postrm() {
+#!/bin/sh
+if [ -n $D ]; then exit 1; fi
+rm -f /dev/changedfiles
+}
+
+do_install() {
+ install -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/fs/changedfiles/
+ install -m 0644 changedfiles.o ${D}/lib/modules/${KERNEL_VERSION}/kernel/fs/changedfiles/
+}