commit | 9126d65392ad0f8afc5e4a8ea8864861a5bff86a | [log] [tgz] |
---|---|---|
author | Edward A. James <eajames@us.ibm.com> | Fri Aug 18 15:30:04 2017 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Tue Aug 29 20:07:47 2017 +0000 |
tree | 6c2b38300378195c6e02e9ad6e0324e39217f115 | |
parent | 13138e1255dd64ac9842cb29da2638c4f2637765 [diff] [blame] |
u-boot fw-utils: Add alternate fw_env config Allows fw_setenv/fw_printenv tools to access alternate bmc image. Change-Id: I7f634fd1201f5df1af01f4407d9d8791557242ae Signed-off-by: Edward A. James <eajames@us.ibm.com>
diff --git a/meta-openbmc-bsp/meta-aspeed/meta-ast2400/recipes-bsp/u-boot/u-boot-fw-utils_%.bbappend b/meta-openbmc-bsp/meta-aspeed/meta-ast2400/recipes-bsp/u-boot/u-boot-fw-utils_%.bbappend index 375359e..9f501ba 100644 --- a/meta-openbmc-bsp/meta-aspeed/meta-ast2400/recipes-bsp/u-boot/u-boot-fw-utils_%.bbappend +++ b/meta-openbmc-bsp/meta-aspeed/meta-ast2400/recipes-bsp/u-boot/u-boot-fw-utils_%.bbappend
@@ -1,11 +1,13 @@ FILESEXTRAPATHS_prepend_ast2400 := "${THISDIR}/files:" SRC_URI_append_ast2400 = " file://fw_env.config" +SRC_URI_append_ast2400 += "file://alt_fw_env.config" do_install_append_ast2400() { if [ -e ${WORKDIR}/fw_env.config ] ; then install -d ${D}${sysconfdir} install -m 644 ${WORKDIR}/fw_env.config ${D}${sysconfdir}/fw_env.config + install -m 644 ${WORKDIR}/alt_fw_env.config ${D}${sysconfdir}/alt_fw_env.config fi }