summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorAlexander Stein <alexander.stein@ew.tq-group.com>2026-06-23 08:47:49 +0200
committerAlexander Stein <alexander.stein@ew.tq-group.com>2026-06-23 08:47:49 +0200
commitf872d24e69af60ff7597833a45c6a5c64ba49d88 (patch)
treed3bf3d872f0005784efc790e7f3ed01a1744fb75 /classes
parente1c3a13333f59c3953af0c37f93708b1052162a3 (diff)
downloadmeta-freescale-f872d24e69af60ff7597833a45c6a5c64ba49d88.tar.gz
imx-boot-container: don't overwrite ATF_MACHINE_NAME
If ATF_MACHINE_NAME is set in local.conf this assignment overwrites the preset. Use a default assignment instead Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/imx-boot-container.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/imx-boot-container.bbclass b/classes/imx-boot-container.bbclass
index b4ca06a99..5365e5fd7 100644
--- a/classes/imx-boot-container.bbclass
+++ b/classes/imx-boot-container.bbclass
@@ -26,7 +26,7 @@
26inherit use-imx-security-controller-firmware 26inherit use-imx-security-controller-firmware
27 27
28# Define ATF binary file to be deployed to the U-Boot build folder 28# Define ATF binary file to be deployed to the U-Boot build folder
29ATF_MACHINE_NAME = "bl31-${ATF_PLATFORM}.bin" 29ATF_MACHINE_NAME ?= "bl31-${ATF_PLATFORM}.bin"
30ATF_MACHINE_NAME:append = "${@bb.utils.contains('MACHINE_FEATURES', 'optee', '-optee', '', d)}" 30ATF_MACHINE_NAME:append = "${@bb.utils.contains('MACHINE_FEATURES', 'optee', '-optee', '', d)}"
31 31
32OEI_NAME ?= "oei-${OEI_CORE}-*.bin" 32OEI_NAME ?= "oei-${OEI_CORE}-*.bin"