From e477865c81b6f0eb9886c5368bbda73082d8bd9f Mon Sep 17 00:00:00 2001 From: Adriana Kobylak Date: Tue, 7 Jul 2020 13:31:51 -0500 Subject: u-boot-aspeed: Add fw_env.config for eMMC Create a fw_env.config for eMMC with a redundant environment based on the mmc distro feature. The environment is located in the first eMMC partition in the User Data area. (From meta-aspeed rev: 3aa2db46e8097aa0a9627684686ca56b5d6b9872) Change-Id: I6e768e308f03513c6cf394a0adc7110d17322d49 Signed-off-by: Adriana Kobylak Signed-off-by: Andrew Geissler --- meta-aspeed/recipes-bsp/u-boot/files/fw_env_ast2600_mmc.config | 3 +++ .../recipes-bsp/u-boot/u-boot-fw-utils-aspeed-sdk_2019.04.bb | 7 ++++++- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 meta-aspeed/recipes-bsp/u-boot/files/fw_env_ast2600_mmc.config (limited to 'meta-aspeed/recipes-bsp') diff --git a/meta-aspeed/recipes-bsp/u-boot/files/fw_env_ast2600_mmc.config b/meta-aspeed/recipes-bsp/u-boot/files/fw_env_ast2600_mmc.config new file mode 100644 index 000000000..4c7937e30 --- /dev/null +++ b/meta-aspeed/recipes-bsp/u-boot/files/fw_env_ast2600_mmc.config @@ -0,0 +1,3 @@ +# Device name Device offset Env. size +/dev/mmcblk0p1 0x00000 0x10000 +/dev/mmcblk0p1 0x10000 0x10000 diff --git a/meta-aspeed/recipes-bsp/u-boot/u-boot-fw-utils-aspeed-sdk_2019.04.bb b/meta-aspeed/recipes-bsp/u-boot/u-boot-fw-utils-aspeed-sdk_2019.04.bb index 821457901..cebbee6e6 100644 --- a/meta-aspeed/recipes-bsp/u-boot/u-boot-fw-utils-aspeed-sdk_2019.04.bb +++ b/meta-aspeed/recipes-bsp/u-boot/u-boot-fw-utils-aspeed-sdk_2019.04.bb @@ -6,6 +6,10 @@ DEPENDS += "mtd-utils" PROVIDES += "u-boot-fw-utils" SRC_URI += "file://fw_env_ast2600_nor.config" +SRC_URI += "file://fw_env_ast2600_mmc.config" + +ENV_CONFIG_FILE = "fw_env_ast2600_nor.config" +ENV_CONFIG_FILE_df-phosphor-mmc = "fw_env_ast2600_mmc.config" INSANE_SKIP_${PN} = "already-stripped" EXTRA_OEMAKE_class-target = 'CROSS_COMPILE=${TARGET_PREFIX} CC="${CC} ${CFLAGS} ${LDFLAGS}" HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" V=1' @@ -23,7 +27,8 @@ do_install () { 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 644 ${WORKDIR}/fw_env_ast2600_nor.config ${D}${sysconfdir}/fw_env.config + + install -m 644 ${WORKDIR}/${ENV_CONFIG_FILE} ${D}${sysconfdir}/fw_env.config } do_install_class-cross () { -- cgit v1.2.3