mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-01-11 15:00:13 +00:00
UNPACKDIR is new contruct for do_unpack things in latest master we should be using that instead of WORKDIR for referencing those files Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 lines
393 B
Plaintext
15 lines
393 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 ${UNPACKDIR}/fw_env.config ${D}${sysconfdir}/fw_env.config
|
|
}
|