diff options
author | Maxin B. John <maxin.john@enea.com> | 2014-06-25 11:13:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-25 13:51:49 +0100 |
commit | 68824d9b8f6e290da078383316b3f4b732585f2b (patch) | |
tree | d55dadaf51de916f78c3704c7bf18c9268e5cc19 /meta/recipes-bsp/u-boot | |
parent | c5713feb0caccf919c8020af14ddebbb0cbf08b8 (diff) | |
download | poky-68824d9b8f6e290da078383316b3f4b732585f2b.tar.gz |
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.
(From OE-Core rev: b4cd268cf7506a521d7800112cb775bd49e1ef09)
Signed-off-by: Maxin B. John <maxin.john@enea.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/u-boot')
-rw-r--r-- | meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb | 2 |
1 files changed, 2 insertions, 0 deletions
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 14b09761e1..89fed8bee4 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 () { | |||
26 | 26 | ||
27 | do_install () { | 27 | do_install () { |
28 | install -d ${D}${base_sbindir} | 28 | install -d ${D}${base_sbindir} |
29 | install -d ${D}${sysconfdir} | ||
29 | install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_printenv | 30 | install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_printenv |
30 | install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_setenv | 31 | install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_setenv |
32 | install -m 0644 ${S}/tools/env/fw_env.config ${D}${sysconfdir}/fw_env.config | ||
31 | } | 33 | } |
32 | 34 | ||
33 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 35 | PACKAGE_ARCH = "${MACHINE_ARCH}" |