diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2023-12-29 11:59:29 +0100 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2024-01-08 14:37:50 -0300 |
commit | da96f93cda90213f20cb81e484b03055d233a054 (patch) | |
tree | 8f281ac57a99230a17bc2fa5f66279469fb200e1 /common/spl/Kconfig | |
parent | 59a72caba907e55edf7458f83ea8f1f60dc12b6e (diff) | |
download | u-boot-da96f93cda90213f20cb81e484b03055d233a054.zip u-boot-da96f93cda90213f20cb81e484b03055d233a054.tar.gz u-boot-da96f93cda90213f20cb81e484b03055d233a054.tar.bz2 |
spl: binman: Disable u_boot_any symbols for i.MX93 boards
This is extending commit 6516c9b349b3 ("spl: binman: Disable u_boot_any
symbols for i.MX8M boards") to i.MX93 boards.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r-- | common/spl/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index cf7ffc9..e7b84fc 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -207,7 +207,7 @@ config SPL_BINMAN_SYMBOLS config SPL_BINMAN_UBOOT_SYMBOLS bool "Declare binman symbols for U-Boot phases in SPL" depends on SPL_BINMAN_SYMBOLS - default n if ARCH_IMX8M + default n if ARCH_IMX8M || ARCH_IMX9 default y help This enables use of symbols in SPL which refer to U-Boot phases, |