From: Michael Lauer Date: Sun, 16 May 2004 12:13:11 +0000 (+0000) Subject: fix compilation of changedfiles-modules X-Git-Tag: Release-2010-05/1~19128 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e707b1b2b7049b02e62a693b7c287d53b39b920;p=openembedded.git fix compilation of changedfiles-modules BKrev: 40a75ad7lQdUIdVYzMUGxHT7l6RvaA --- diff --git a/changedfiles/changedfiles-modules_1.0-rc1.oe b/changedfiles/changedfiles-modules_1.0-rc1.oe index dd3c3debb3..346b20f166 100644 --- a/changedfiles/changedfiles-modules_1.0-rc1.oe +++ b/changedfiles/changedfiles-modules_1.0-rc1.oe @@ -11,14 +11,21 @@ S = "${WORKDIR}/changedfiles-${PV}/module" inherit module do_compile() { - changedfiles.o: changedfiles.c - ${CC} -Wall -DMODULE -D__KERNEL__ -I${KERNEL_PATH} -c changedfiles.c + ${CC} -Wall -DMODULE -D__KERNEL__ -I${KERNEL_PATH}/include -c changedfiles.c } -#install-exec-hook: -# (/bin/mknod /dev/changedfiles c 40 0; exit 0 ) -# chmod 0600 /dev/changedfiles -#FIXME perhaps package also readtest in an init script? +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/