aboutsummaryrefslogtreecommitdiffstats
path: root/udev
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
committerChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
commita780643c4b6aa11e1a36965a69df7116477c7b4c (patch)
tree17e81e77bde19931facf9b30fa5b5981df796071 /udev
parent88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff)
downloadopenembedded-a780643c4b6aa11e1a36965a69df7116477c7b4c.tar.gz
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb 2004/12/07 04:58:25-06:00 ti.com!kergoth More updates per the core rename. 2004/12/07 04:46:51-06:00 ti.com!kergoth Update soundtracker per the core rename. 2004/12/07 04:44:14-06:00 ti.com!kergoth Merge 2004/12/07 04:42:38-06:00 ti.com!kergoth Updates per the recent rename of the oe core from 'oe' to 'bitbake'. BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'udev')
-rw-r--r--udev/udev_042.bb0
-rw-r--r--udev/udev_042.oe41
2 files changed, 0 insertions, 41 deletions
diff --git a/udev/udev_042.bb b/udev/udev_042.bb
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/udev/udev_042.bb
diff --git a/udev/udev_042.oe b/udev/udev_042.oe
deleted file mode 100644
index ef5e35d876..0000000000
--- a/udev/udev_042.oe
+++ /dev/null
@@ -1,41 +0,0 @@
-DESCRIPTION = "udev is a program which dynamically creates and removes device nodes from \
-/dev/. It responds to /sbin/hotplug device events and requires a 2.6 kernel."
-LICENSE = "GPL"
-PR = "r3"
-
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
- file://flags.patch;patch=1 \
- file://tmpfs.patch;patch=1 \
- file://noasmlinkage.patch;patch=1 \
- file://init"
-
-PACKAGES =+ "udev-utils"
-FILES_udev-utils = "${usrbindir}/udevinfo ${usrbindir}/udevtest"
-
-inherit update-rc.d
-
-INITSCRIPT_NAME = "udev"
-INITSCRIPT_PARAMS = "start 03 S ."
-
-export HOSTCC = "${BUILD_CC}"
-export udevdir ?= "/dev"
-export usrbindir := "${bindir}"
-export usrsbindir := "${sbindir}"
-export etcdir = "${sysconfdir}"
-LD = "${CC}"
-bindir = "/bin"
-sbindir = "/sbin"
-
-UDEV_EXTRAS = "extras/scsi_id/ extras/volume_id/"
-FILES_${PN} += "${usrbindir} ${usrsbindir}"
-EXTRA_OEMAKE = "-e \
- 'EXTRAS=${UDEV_EXTRAS}' \
- 'STRIP=echo'"
-
-do_install () {
- install -d ${D}/${usrsbindir} \
- ${D}/${sbindir}
- oe_runmake 'DESTDIR=${D}' install
- install -d ${D}/${sysconfdir}/init.d
- install -m 0755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/udev
-}