summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorMing Liu <ming.liu@toradex.com>2020-03-05 17:42:16 +0100
committerMing Liu <ming.liu@toradex.com>2020-03-05 17:43:57 +0100
commit12419ca68eea182f9f6892092dacdb5bf2b26fbb (patch)
tree0d5d2ada8191d0b04f57e05326445d285a1b1a60 /board
parent0ece8702d4b097cd837cfcabba980c358874aef4 (diff)
fitimage: adapt to the changes in tezi meta layer
- Drop "config@1" for apalis-t30, since that's the only config, we do not have to explicitly set it to config 1. - Change the configuration for apalis-tk1 to use the actual fdt files. - Change the configuration for colibri_imx7 to use the actual fdt files. - Also fix a wrong fdtfile setting for colibri_imx7. Related-to: TEI-498 Signed-off-by: Ming Liu <ming.liu@toradex.com>
Diffstat (limited to 'board')
-rw-r--r--board/toradex/apalis-tk1/apalis-tk1.c2
-rw-r--r--board/toradex/apalis_t30/apalis_t30.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/board/toradex/apalis-tk1/apalis-tk1.c b/board/toradex/apalis-tk1/apalis-tk1.c
index 92ce1a9592..9732314133 100644
--- a/board/toradex/apalis-tk1/apalis-tk1.c
+++ b/board/toradex/apalis-tk1/apalis-tk1.c
@@ -48,7 +48,7 @@ int arch_misc_init(void)
setenv("vidargs", "video=HDMI-A-1:640x480-16@60 hotplugfb");
setenv("bootcmd", "run setup; setenv bootargs ${defargs} " \
"${setupargs} ${vidargs} ${teziargs}; " \
- "bootm 0x80208000#config@${fdt_module}");
+ "bootm 0x80208000#config@${soc}-${fdt_module}-${fdt_board}.dtb");
#else /* CONFIG_TDX_EASY_INSTALLER */
setenv("bootdelay", "-1");
#endif /* CONFIG_TDX_EASY_INSTALLER */
diff --git a/board/toradex/apalis_t30/apalis_t30.c b/board/toradex/apalis_t30/apalis_t30.c
index a03bc22ab5..18ce27d151 100644
--- a/board/toradex/apalis_t30/apalis_t30.c
+++ b/board/toradex/apalis_t30/apalis_t30.c
@@ -68,7 +68,7 @@ int arch_misc_init(void)
setenv("vidargs", "video=HDMI-A-1:640x480-16@60 hotplugfb");
setenv("bootcmd", "run setup; setenv bootargs ${defargs} " \
"${setupargs} ${vidargs} ${teziargs}; " \
- "bootm 0x80208000#config@1");
+ "bootm 0x80208000");
#else /* CONFIG_TDX_EASY_INSTALLER */
setenv("bootdelay", "-1");
#endif /* CONFIG_TDX_EASY_INSTALLER */