mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 21:09:03 +02:00

Some of them were introduced by mass-removal of S = WORKDIR/git assignments; rather than try to fix up (or redo) just these, I've run this sed command over the whole tree: sed -i -z -E 's/([ \t\f\v\r]*\n){3,}/\n\n/g' `find . -name *.bb -o -name *.inc` The rationale is that more than one empty line is wasting vertical screen space, and does nothing for readability. Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
18 lines
590 B
BlitzBasic
18 lines
590 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"
|
|
|
|
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/
|
|
}
|