aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/udev/udev-static-devices.bb
blob: df148b8e564ad2e0996cd78b99037edea18f4891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
DESCRIPTION = "Provide per-machine static nodes of /dev"
RDEPENDS_${PN} = "udev"

PR = "r1"

SRC_URI = "file://udev_static_devices_tarball"

FILES_${PN} += "${base_libdir}/udev/*"

do_install () {
	install -d ${D}${base_libdir}/udev/devices
	if [ -s ${WORKDIR}/udev_static_devices_tarball ]; then
		install -m 0644 ${WORKDIR}/udev_static_devices_tarball ${D}${base_libdir}/udev/devices.tar.gz
	fi
}

pkg_postinst () {
	ROOT="$D"
	if [ -f "$ROOT/lib/udev/devices.tar.gz" ]; then
		tar -C "$ROOT/lib/udev" -zxf "$ROOT/lib/udev/devices.tar.gz" || exit $?
	fi
}