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-17 10:58:17 -0300 |
commit | 739cab987341d48e3654374ea4bbda77c72bfbe9 (patch) | |
tree | f2e57d08631108ca1fe44ca75d0a7568322670bf | |
parent | 3cf8e849e501c1243c0710889e97d14477688784 (diff) | |
download | meta-freescale-739cab987341d48e3654374ea4bbda77c72bfbe9.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.
-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 | ||