mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-26 07:06:59 +00:00
Convert to new override syntax
This is the result of automated script conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Andrei Gherzan
parent
8dc3a31088
commit
9ea7aa2cd2
@@ -10,6 +10,6 @@ SPLASH = "psplash-raspberrypi"
|
||||
|
||||
IMAGE_FEATURES += "ssh-server-dropbear splash"
|
||||
|
||||
do_image_prepend() {
|
||||
do_image:prepend() {
|
||||
bb.warn("The image 'rpi-basic-image' is deprecated, please use 'core-image-base' instead")
|
||||
}
|
||||
|
||||
@@ -6,6 +6,6 @@ IMAGE_INSTALL += " \
|
||||
kernel-modules \
|
||||
"
|
||||
|
||||
do_image_prepend() {
|
||||
do_image:prepend() {
|
||||
bb.warn("The image 'rpi-hwup-image' is deprecated, please use 'core-image-base' instead")
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@ include recipes-core/images/core-image-base.bb
|
||||
|
||||
COMPATIBLE_MACHINE = "^rpi$"
|
||||
|
||||
IMAGE_INSTALL_append = " packagegroup-rpi-test"
|
||||
IMAGE_INSTALL:append = " packagegroup-rpi-test"
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# mesa-demos needs gles1 and userland driver does not have it, works ok with vc4 graphics driver
|
||||
X11GLTOOLS_remove_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', 'mesa-demos', d)}"
|
||||
X11GLTOOLS:remove:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', 'mesa-demos', d)}"
|
||||
|
||||
@@ -10,7 +10,7 @@ COMPATIBLE_MACHINE = "^rpi$"
|
||||
|
||||
OMXPLAYER = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', 'omxplayer', d)}"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
RDEPENDS:${PN} = "\
|
||||
${OMXPLAYER} \
|
||||
bcm2835-tests \
|
||||
rpio \
|
||||
@@ -23,7 +23,7 @@ RDEPENDS_${PN} = "\
|
||||
bluez5 \
|
||||
"
|
||||
|
||||
RRECOMMENDS_${PN} = "\
|
||||
RRECOMMENDS:${PN} = "\
|
||||
${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-multimedia", "bigbuckbunny-1080p bigbuckbunny-480p bigbuckbunny-720p", "", d)} \
|
||||
${MACHINE_EXTRA_RRECOMMENDS} \
|
||||
"
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
|
||||
SPLASH_IMAGES_rpi = "file://psplash-raspberrypi-img.h;outsuffix=raspberrypi"
|
||||
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
||||
SPLASH_IMAGES:rpi = "file://psplash-raspberrypi-img.h;outsuffix=raspberrypi"
|
||||
|
||||
@@ -10,4 +10,4 @@ do_install () {
|
||||
install -m 644 ${WORKDIR}/80-udisks-rpi.rules ${D}${base_libdir}/udev/rules.d
|
||||
}
|
||||
|
||||
FILES_${PN} = "${base_libdir}/udev/rules.d"
|
||||
FILES:${PN} = "${base_libdir}/udev/rules.d"
|
||||
|
||||
Reference in New Issue
Block a user