mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-09-16 13:43:15 +00:00
Add fw_env.config that uses at run-time /boot/uboot.env generated through the boot scripts (specifically boot.cmd.in) from recipe rpi-u-boot-scr. This configuration file is required to successfully run fw_printenv from the user space. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
13 lines
282 B
Plaintext
13 lines
282 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI_append_rpi = " \
|
|
file://fw_env.config \
|
|
"
|
|
|
|
DEPENDS_append_rpi = " rpi-u-boot-scr"
|
|
|
|
do_install_append_rpi () {
|
|
install -d ${D}${sysconfdir}
|
|
install -m 0644 ${WORKDIR}/fw_env.config ${D}${sysconfdir}/fw_env.config
|
|
}
|