blob: 9431a7be0ca28605d53ab68f517ba005a4bae79c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
SRC_URI += " \
file://monitor-hotplug.sh \
file://99-monitor-hotplug.rules \
file://0001-xf86Rotate.c-Add-required-NULL-check.patch \
"
do_install:append() {
install -d ${D}${bindir}
install -m 0755 ${UNPACKDIR}/monitor-hotplug.sh ${D}${bindir}
install -d ${D}${sysconfdir}/udev/rules.d
install -m 0644 ${UNPACKDIR}/99-monitor-hotplug.rules ${D}${sysconfdir}/udev/rules.d/99-monitor-hotplug.rules
}
FILES:${PN} += "${sysconfdir}/udev/rules.d/*"
|