From: Maxin B. John Date: Wed, 25 Jun 2014 09:13:59 +0000 (+0200) Subject: u-boot-fw-utils: install config file X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~33298 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4cd268cf7506a521d7800112cb775bd49e1ef09;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git u-boot-fw-utils: install config file The on-target fw_printenv and fw_setenv needs configuration file (fw_env.config) to be present in the target. Signed-off-by: Maxin B. John Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb b/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb index 14b09761e1b..89fed8bee44 100644 --- a/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb +++ b/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb @@ -26,8 +26,10 @@ do_compile () { do_install () { install -d ${D}${base_sbindir} + install -d ${D}${sysconfdir} install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_printenv install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_setenv + install -m 0644 ${S}/tools/env/fw_env.config ${D}${sysconfdir}/fw_env.config } PACKAGE_ARCH = "${MACHINE_ARCH}"