diff options
author | Fabio Berton <fabio.berton@ossystems.com.br> | 2019-04-15 14:23:57 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2019-04-25 12:06:58 -0300 |
commit | a047911c5ad1e06d7878dfdffa8674a7edc28961 (patch) | |
tree | dc5522f0a724650b65966b93980981a64d1a1984 | |
parent | 0ef9809cc7317760f8e51d1dde8b16521e9fe1d5 (diff) | |
download | meta-freescale-a047911c5ad1e06d7878dfdffa8674a7edc28961.tar.gz |
imx-base.inc: Use UBOOT_SUFFIX in UBOOT_BINARY variable
UBOOT_SUFFIX is already set in machine configuration files and
we can use this variable to set u-boot suffix for UBOOT_BINARY.
(cherry picked from commit 739cab987341d48e3654374ea4bbda77c72bfbe9)
Signed-off-by: Joris Offouga <offougajoris@gmail.com>
-rw-r--r-- | conf/machine/include/imx-base.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc index bef8d6ce..34b99cec 100644 --- a/conf/machine/include/imx-base.inc +++ b/conf/machine/include/imx-base.inc | |||
@@ -14,8 +14,8 @@ PREFERRED_PROVIDER_virtual/bootloader ??= "${IMX_DEFAULT_BOOTLOADER}" | |||
14 | 14 | ||
15 | PREFERRED_PROVIDER_u-boot-mxsboot-native ??= "u-boot-fslc-mxsboot-native" | 15 | PREFERRED_PROVIDER_u-boot-mxsboot-native ??= "u-boot-fslc-mxsboot-native" |
16 | 16 | ||
17 | UBOOT_BINARY ?= "u-boot.imx" | 17 | UBOOT_BINARY ?= "u-boot.${UBOOT_SUFFIX}" |
18 | UBOOT_MAKE_TARGET ?= "u-boot.imx" | 18 | UBOOT_MAKE_TARGET ?= "u-boot.${UBOOT_SUFFIX}" |
19 | UBOOT_MAKE_TARGET_mxs ?= "u-boot.sb" | 19 | UBOOT_MAKE_TARGET_mxs ?= "u-boot.sb" |
20 | UBOOT_MAKE_TARGET_mx8 ?= "" | 20 | UBOOT_MAKE_TARGET_mx8 ?= "" |
21 | 21 | ||