mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-04 20:54:46 +02:00

Some checks failed
Mirrors / Yocto Git Mirror (push) Has been cancelled
OE-core has added fb.rules to psplash via [1] so avoid adding it here
This effectively reverts commit e9e5efa750
[1] https://git.yoctoproject.org/poky/commit/?id=af38235305fc2ac59a82f0413a1fe4cc5161ff86
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Bastian Wanner <bastian.wanner@inovex.de>
20 lines
612 B
BlitzBasic
20 lines
612 B
BlitzBasic
DESCRIPTION = "udev rules for Raspberry Pi Boards"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/RPi-Distro/raspberrypi-sys-mods;protocol=https;branch=master \
|
|
file://can.rules \
|
|
"
|
|
SRCREV = "5ce3ef2b7f377c23fea440ca9df0e30f3f8447cf"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
do_install () {
|
|
install -d ${D}${sysconfdir}/udev/rules.d
|
|
install -m 0644 ${S}/etc.armhf/udev/rules.d/99-com.rules ${D}${sysconfdir}/udev/rules.d/
|
|
install -m 0644 ${UNPACKDIR}/can.rules ${D}${sysconfdir}/udev/rules.d/
|
|
}
|