mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-04-21 11:48:11 +00:00
Temporary avoid Raspberry Pi 5 machines because U-Boot has not been ported to it yet. This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
18 lines
504 B
Plaintext
18 lines
504 B
Plaintext
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI:append:rpi = " \
|
|
file://fw_env.config \
|
|
"
|
|
|
|
SRC_URI:append:rpi = " file://0001-rpi-always-set-fdt_addr-with-firmware-provided-FDT-address.patch"
|
|
|
|
DEPENDS:append:rpi = " u-boot-default-script"
|
|
|
|
do_install:append:rpi () {
|
|
install -d ${D}${sysconfdir}
|
|
install -m 0644 ${WORKDIR}/fw_env.config ${D}${sysconfdir}/fw_env.config
|
|
}
|
|
|
|
# Temporary avoid Raspberry Pi 5 because U-Boot has not been ported yet
|
|
COMPATIBLE_MACHINE:raspberrypi5 = "(-)"
|