diff options
| author | Adam Ford <[email protected]> | 2021-09-10 15:19:22 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-01-07 15:41:58 -0500 |
| commit | 2baacc75a532dadfe8694252fb2f6d8dc3fa3983 (patch) | |
| tree | 027b617e42ef97ef36de2dec7241d9b93265ae1c /board | |
| parent | 80efad13425a081e186764bcb9ccd77fcc98a456 (diff) | |
imx8mn_beacon: Fix booting hang and switch to binman
Somewhere along the line, the board stopped being able to boot.
Rather than just fixing the issue, let's fix the issue and migrate
to binman to eliminate a warning when using custom imx tools for
generating the binary.
Signed-off-by: Adam Ford <[email protected]>
Reviewed-by: Peng Fan <[email protected]>
Reviewed-by: Fabio Estevam <[email protected]>
Diffstat (limited to 'board')
| -rw-r--r-- | board/beacon/imx8mn/Kconfig | 2 | ||||
| -rw-r--r-- | board/beacon/imx8mn/imximage-8mn-lpddr4.cfg | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/board/beacon/imx8mn/Kconfig b/board/beacon/imx8mn/Kconfig index 65d2923918d..fb301397b1a 100644 --- a/board/beacon/imx8mn/Kconfig +++ b/board/beacon/imx8mn/Kconfig @@ -16,7 +16,7 @@ config IMX8MN_BEACON_2GB_LPDDR bool "Enable 2GB LPDDR" config IMX_CONFIG - default "arch/arm/mach-imx/imx8m/imximage-8mn-lpddr4.cfg" + default "board/beacon/imx8mn/imximage-8mn-lpddr4.cfg" source "board/freescale/common/Kconfig" diff --git a/board/beacon/imx8mn/imximage-8mn-lpddr4.cfg b/board/beacon/imx8mn/imximage-8mn-lpddr4.cfg new file mode 100644 index 00000000000..7286b264944 --- /dev/null +++ b/board/beacon/imx8mn/imximage-8mn-lpddr4.cfg @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright 2021 NXP + */ + +#define __ASSEMBLY__ + +ROM_VERSION v2 +BOOT_FROM sd +LOADER u-boot-spl-ddr.bin 0x912000 |
