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>
52 lines
1.2 KiB
BlitzBasic
52 lines
1.2 KiB
BlitzBasic
SUMMARY = "A collection of scripts and simple applications"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENCE;md5=4c01239e5c3a3d133858dedacdbca63c"
|
|
|
|
RCONFLICTS:${PN} = "userland"
|
|
DEPENDS:append = " dtc"
|
|
PACKAGES =+ " ${PN}-raspinfo"
|
|
PACKAGES =+ " ${PN}-ovmerge"
|
|
RDEPENDS:${PN}-raspinfo += " bash"
|
|
RDEPENDS:${PN}-ovmerge += " perl"
|
|
|
|
PV = "1.0+git"
|
|
|
|
SRC_URI = "git://github.com/raspberrypi/utils;protocol=https;branch=master"
|
|
|
|
SRCREV = "b9c63214c535d7df2b0fa6743b7b3e508363c25a"
|
|
|
|
FILES:${PN}:append = " \
|
|
${datadir}/bash-completion/completions/pinctrl \
|
|
${datadir}/bash-completion/completions/vcgencmd \
|
|
"
|
|
FILES:${PN}-raspinfo += "${bindir}/raspinfo"
|
|
FILES:${PN}-ovmerge += "${bindir}/ovmerge"
|
|
|
|
OECMAKE_TARGET_COMPILE = "\
|
|
dtmerge/all \
|
|
eeptools/all \
|
|
otpset/all \
|
|
overlaycheck/all \
|
|
ovmerge/all \
|
|
pinctrl/all \
|
|
raspinfo/all \
|
|
vcgencmd/all \
|
|
vclog/all \
|
|
vcmailbox/all \
|
|
"
|
|
|
|
OECMAKE_TARGET_INSTALL = "\
|
|
dtmerge/install \
|
|
eeptools/install \
|
|
otpset/install \
|
|
overlaycheck/install \
|
|
ovmerge/install \
|
|
pinctrl/install \
|
|
raspinfo/install \
|
|
vcgencmd/install \
|
|
vclog/install \
|
|
vcmailbox/install \
|
|
"
|
|
|
|
inherit cmake
|