diff options
author | Stefan Eichenberger <stefan.eichenberger@toradex.com> | 2024-11-22 14:53:14 +0100 |
---|---|---|
committer | Stefan Eichenberger <eichest@gmail.com> | 2024-12-18 07:21:58 +0100 |
commit | f1a58cb34e2bdc99b234edab18001625f3bd9d2f (patch) | |
tree | d98b8b8c88a7d152557050a9021e3d118c0fc609 | |
parent | 4ac2f27a6d905e3f6e8587104f1590ecb5a70ecd (diff) |
toradex: tdx-cfg-block: set apalis imx8dxp to always disabled
Apalis iMX8DXP 1GB is currently set to enable when compiling for Apalis
iMX8. This is a mistake the Apalis iMX8DXP 1GB was never released and is
not compatible to the Apalis iMX8 series.
Upstream-Status: Submitted [https://lore.kernel.org/all/20241211122036.103383-1-eichest@gmail.com/]
Signed-off-by: Stefan Eichenberger <stefan.eichenberger@toradex.com>
-rw-r--r-- | board/toradex/common/tdx-cfg-block.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/toradex/common/tdx-cfg-block.c b/board/toradex/common/tdx-cfg-block.c index eb77d539568..4c5afd38f84 100644 --- a/board/toradex/common/tdx-cfg-block.c +++ b/board/toradex/common/tdx-cfg-block.c @@ -120,7 +120,7 @@ const struct toradex_som toradex_modules[] = { { COLIBRI_IMX8DX_WIFI_BT, "Colibri iMX8DX 1GB WB", TARGET_IS_ENABLED(COLIBRI_IMX8X) }, { COLIBRI_IMX8DX, "Colibri iMX8DX 1GB", TARGET_IS_ENABLED(COLIBRI_IMX8X) }, { APALIS_IMX8QXP, "Apalis iMX8QXP 2GB ECC IT", 0 }, - { APALIS_IMX8DXP, "Apalis iMX8DXP 1GB", TARGET_IS_ENABLED(APALIS_IMX8) }, + { APALIS_IMX8DXP, "Apalis iMX8DXP 1GB", 0 }, { VERDIN_IMX8MMQ_WIFI_BT_IT, "Verdin iMX8M Mini Quad 2GB WB IT", TARGET_IS_ENABLED(VERDIN_IMX8MM) }, { VERDIN_IMX8MNQ_WIFI_BT, "Verdin iMX8M Nano Quad 1GB WB", 0 }, { VERDIN_IMX8MMDL, "Verdin iMX8M Mini DualLite 1GB", TARGET_IS_ENABLED(VERDIN_IMX8MM) }, |