mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
45 lines
1.7 KiB
BlitzBasic
45 lines
1.7 KiB
BlitzBasic
DESCRIPTION = "udev is a daemon which dynamically creates and removes device nodes from \
|
|
/dev/, handles hotplug events and loads drivers at boot time. It replaces \
|
|
the hotplug package and requires a kernel not older than 2.6.12."
|
|
RPROVIDES = "hotplug"
|
|
|
|
SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
|
|
file://noasmlinkage.patch;patch=1 \
|
|
file://flags.patch;patch=1 \
|
|
file://udevsynthesize.patch;patch=1 \
|
|
file://udevsynthesize.sh"
|
|
|
|
include udev.inc
|
|
|
|
INITSCRIPT_PARAMS = "start 03 S . start 55 0 6 ."
|
|
|
|
PR = "r1"
|
|
|
|
UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/"
|
|
|
|
do_install () {
|
|
install -d ${D}${usrsbindir} \
|
|
${D}${sbindir}
|
|
oe_runmake 'DESTDIR=${D}' INSTALL=install install
|
|
install -d ${D}${sysconfdir}/init.d
|
|
install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/udev
|
|
|
|
install -d ${D}${sysconfdir}/udev/rules.d/
|
|
|
|
install -m 0644 ${WORKDIR}/local.rules ${D}${sysconfdir}/udev/rules.d/local.rules
|
|
install -m 0644 ${WORKDIR}/permissions.rules ${D}${sysconfdir}/udev/rules.d/permissions.rules
|
|
install -m 0644 ${WORKDIR}/udev.rules ${D}${sysconfdir}/udev/rules.d/udev.rules
|
|
if [ "${UDEV_DEVFS_RULES}" = "1" ]; then
|
|
install -m 0644 ${WORKDIR}/devfs-udev.rules ${D}${sysconfdir}/udev/rules.d/devfs-udev.rules
|
|
fi
|
|
|
|
install -d ${D}${sysconfdir}/udev/scripts/
|
|
|
|
install -m 0755 ${WORKDIR}/mount.sh ${D}${sysconfdir}/udev/scripts/mount.sh
|
|
install -m 0755 ${WORKDIR}/network.sh ${D}${sysconfdir}/udev/scripts
|
|
|
|
install -d ${D}${base_libdir}/udev/
|
|
install -m 0755 ${S}/udevsynthesize ${D}${base_libdir}/udev/udevsynthesize
|
|
install -m 0755 ${WORKDIR}/udevsynthesize.sh ${D}${sbindir}/udevsynthesize
|
|
}
|