summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorFabio Berton <fabio.berton@ossystems.com.br>2019-04-15 14:23:57 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2019-04-17 10:58:17 -0300
commit739cab987341d48e3654374ea4bbda77c72bfbe9 (patch)
treef2e57d08631108ca1fe44ca75d0a7568322670bf /conf
parent3cf8e849e501c1243c0710889e97d14477688784 (diff)
downloadmeta-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.
Diffstat (limited to 'conf')
-rw-r--r--conf/machine/include/imx-base.inc4
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
15PREFERRED_PROVIDER_u-boot-mxsboot-native ??= "u-boot-fslc-mxsboot-native" 15PREFERRED_PROVIDER_u-boot-mxsboot-native ??= "u-boot-fslc-mxsboot-native"
16 16
17UBOOT_BINARY ?= "u-boot.imx" 17UBOOT_BINARY ?= "u-boot.${UBOOT_SUFFIX}"
18UBOOT_MAKE_TARGET ?= "u-boot.imx" 18UBOOT_MAKE_TARGET ?= "u-boot.${UBOOT_SUFFIX}"
19UBOOT_MAKE_TARGET_mxs ?= "u-boot.sb" 19UBOOT_MAKE_TARGET_mxs ?= "u-boot.sb"
20UBOOT_MAKE_TARGET_mx8 ?= "" 20UBOOT_MAKE_TARGET_mx8 ?= ""
21 21