diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2005-09-20 22:19:09 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-20 22:19:09 +0000 |
commit | a5bf5ebfd2b45921dc5d3aa152a137105f704bd8 (patch) | |
tree | aae8b14c3bd99558c053b201d827376ad54594a6 /packages/pcmciautils | |
parent | 8f83659fedd6d832dc4facacbe74056287ee3b77 (diff) |
pcmciautils: Install the binaries into the correct place. Remove coldplug references as they now just create errors. Add dependency on module-init-tools - when busybox's modprobe expands to cover pcmcia alias handling, this can be removed.
Diffstat (limited to 'packages/pcmciautils')
-rw-r--r-- | packages/pcmciautils/pcmciautils_010.bb | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/packages/pcmciautils/pcmciautils_010.bb b/packages/pcmciautils/pcmciautils_010.bb index f619a98235..385ccd9d95 100644 --- a/packages/pcmciautils/pcmciautils_010.bb +++ b/packages/pcmciautils/pcmciautils_010.bb @@ -1,6 +1,6 @@ DESCRIPTION = "Linux Kernel 2.6 Userland Utilities for the PCMCIA Subsystem" DEPENDS = "sysfsutils udev" -RDEPENDS = "udev" +RDEPENDS = "udev module-init-tools" HOMEPAGE = "http://kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html" SECTION = "kernel/userland" PRIORITY = "optional" @@ -8,15 +8,11 @@ PRIORITY = "optional" SRC_URI = "http://kernel.org/pub/linux/utils/kernel/pcmcia/pcmciautils-${PV}.tar.bz2" S = "${WORKDIR}/pcmciautils-${PV}" -PR = "r1" - -inherit update-rc.d - -INITSCRIPT_NAME = "coldplug" -INITSCRIPT_PARAMS = "defaults" +PR = "r2" export HOSTCC = "${BUILD_CC}" export etcdir = "${sysconfdir}" +export sbindir = "${base_sbindir}" export pcmciaconfdir = "${sysconfdir}/pcmcia" export udevrulesdir = "${sysconfdir}/udev/rules.d" export UDEV = 1 |