diff options
author | Lukasz Majewski <lukma@denx.de> | 2019-10-15 10:28:46 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-11-03 17:04:16 +0100 |
commit | e4417ed03ed97eb40a4908a5cf7940a360a70a82 (patch) | |
tree | c3f81ec3cf113f4ba4d08317f541bd209733f743 /board/liebherr | |
parent | a4a16c9181a80d8473f71648b6d3a02fc57c9709 (diff) |
ARM: imx: Convert mccmon6 to use fitImage instead of uImage+DTB
This commit enabled support for fitImage on mccmon6 when we
switch to DT/DTS (including falcon mode).
Signed-off-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'board/liebherr')
-rw-r--r-- | board/liebherr/mccmon6/spl.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/board/liebherr/mccmon6/spl.c b/board/liebherr/mccmon6/spl.c index 4f1e24033d..fc5f5e948c 100644 --- a/board/liebherr/mccmon6/spl.c +++ b/board/liebherr/mccmon6/spl.c @@ -332,6 +332,13 @@ void board_boot_order(u32 *spl_boot_list) } } +#ifdef CONFIG_SPL_LOAD_FIT +int board_fit_config_name_match(const char *name) +{ + return 0; +} +#endif + #ifdef CONFIG_SPL_OS_BOOT int spl_start_uboot(void) { |