mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-16 15:56:57 +00:00
3a7ba89c58
With stock u-boot v2020.01 which we use from poky CM3 module won't boot. We need to apply this patch in order to have platform again working. Add it only for cm3 to not break anything else. Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
16 lines
423 B
Plaintext
16 lines
423 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI_append_rpi = " \
|
|
file://fw_env.config \
|
|
"
|
|
|
|
# special fix for raspberrypi-cm3
|
|
SRC_URI_append_raspberrypi-cm3 = " file://0001-dm-core-Move-ofdata_to_platdata-call-earlier.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
|
|
}
|