u-boot-fw-utils: fix path where fw_env.config is located
Commit fb2e7e37f4 placed the fw_env.config in a subfolder
${STORAGE_MEDIA}.
Signed-off-by: Hector Palacios <hector.palacios@digi.com>
This commit is contained in:
parent
92788841c4
commit
36b9e0c656
|
|
@ -32,7 +32,7 @@ UBOOT_CONFIG[sandbox] = "sandbox_defconfig"
|
||||||
do_install_append() {
|
do_install_append() {
|
||||||
install -d ${D}${includedir}/libubootenv
|
install -d ${D}${includedir}/libubootenv
|
||||||
install -m 0644 ${S}/tools/env/ubootenv.h ${D}${includedir}/libubootenv/
|
install -m 0644 ${S}/tools/env/ubootenv.h ${D}${includedir}/libubootenv/
|
||||||
install -m 0644 ${WORKDIR}/fw_env.config ${D}${sysconfdir}/
|
install -m 0644 ${WORKDIR}/${STORAGE_MEDIA}/fw_env.config ${D}${sysconfdir}/
|
||||||
}
|
}
|
||||||
|
|
||||||
pkg_postinst_ontarget_${PN}() {
|
pkg_postinst_ontarget_${PN}() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue