summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2020-12-14 16:03:50 -0600
committerOtavio Salvador <otavio@ossystems.com.br>2021-01-21 08:37:58 -0300
commit80345fbe89c5ac96975f9c7ef38e8dc8d2a36346 (patch)
tree52d536e34359afa72a864605af644e1614f38767 /classes
parentb57002ea344326e638e2c36be27fb37562f076f5 (diff)
downloadmeta-freescale-80345fbe89c5ac96975f9c7ef38e8dc8d2a36346.tar.gz
imx8qxpmek: Update the i.MX 8QXP default build to rev C0
The current machine configuration support for 8QXP MEK is for rev B0 silicon. Support for rev C0 is implemented using a machine override `mx8qxpc0`. Update the default build to rev C0 silicon. Support for rev B0 is provided with a new machine feature `soc-revb0`. The machine override is removed. Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/use-imx-security-controller-firmware.bbclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/classes/use-imx-security-controller-firmware.bbclass b/classes/use-imx-security-controller-firmware.bbclass
index 7b82bcaf..52b1bf37 100644
--- a/classes/use-imx-security-controller-firmware.bbclass
+++ b/classes/use-imx-security-controller-firmware.bbclass
@@ -19,8 +19,9 @@
19SECO_FIRMWARE_NAME ?= "" 19SECO_FIRMWARE_NAME ?= ""
20 20
21SECO_FIRMWARE_NAME_mx8qm = "mx8qmb0-ahab-container.img" 21SECO_FIRMWARE_NAME_mx8qm = "mx8qmb0-ahab-container.img"
22SECO_FIRMWARE_NAME_mx8qxp = "mx8qxb0-ahab-container.img" 22SECO_FIRMWARE_NAME_mx8qxp = \
23SECO_FIRMWARE_NAME_mx8qxpc0 = "mx8qxc0-ahab-container.img" 23 "${@bb.utils.contains('MACHINE_FEATURES', 'soc-revb0', 'mx8qxb0-ahab-container.img', \
24 'mx8qxc0-ahab-container.img', d)}"
24SECO_FIRMWARE_NAME_mx8phantomdxl = "mx8qxb0-ahab-container.img" 25SECO_FIRMWARE_NAME_mx8phantomdxl = "mx8qxb0-ahab-container.img"
25SECO_FIRMWARE_NAME_mx8dxl = "mx8dxla0-ahab-container.img" 26SECO_FIRMWARE_NAME_mx8dxl = "mx8dxla0-ahab-container.img"
26 27