mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 12:59:03 +02:00
13 lines
354 B
BlitzBasic
13 lines
354 B
BlitzBasic
DESCRIPTION = "udev rules for Raspberry Pi Boards"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
SRC_URI = " file://99-com.rules"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_install () {
|
|
install -d ${D}${sysconfdir}/udev/rules.d
|
|
install -m 0644 ${WORKDIR}/99-com.rules ${D}${sysconfdir}/udev/rules.d/
|
|
}
|