diff options
author | Tom Rini <trini@konsulko.com> | 2025-09-25 14:51:26 -0600 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2025-10-10 11:45:07 +0800 |
commit | b1ca952b488fce2ffd71d93040b1f1f2d95d4674 (patch) | |
tree | 915ae6f9f1b306d2fc364482d5d415234db0ad69 | |
parent | 524d637bb933e51a85ba078eafc5e3fdc7616e50 (diff) |
NXP: Make RAMBOOT_PBL only be valid for PowerPC or ls1021A
Only PowerPC and LS1021A platforms can make use of RAMBOOT_PBL. Add the
dependencies to the symbol.
Signed-off-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r-- | boot/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index 780889023e1..eff05948b3a 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -1093,6 +1093,7 @@ config SYS_RAMBOOT config RAMBOOT_PBL bool "Freescale PBL(pre-boot loader) image format support" + depends on ARCH_LS1021A || PPC select SYS_RAMBOOT if PPC help Some SoCs use PBL to load RCW and/or pre-initialization instructions. |