diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/arm/Kconfig | 5 | ||||
-rw-r--r-- | src/arch/mips/Kconfig | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/arch/arm/Kconfig b/src/arch/arm/Kconfig index 2499d2d075..6bef91ce77 100644 --- a/src/arch/arm/Kconfig +++ b/src/arch/arm/Kconfig @@ -31,3 +31,8 @@ config ARM_BOOTBLOCK_CUSTOM config ARM_LPAE bool default n + +# Mark SMP stack size as 0 since we keep using SRAM stack throughout ramstage. +config STACK_SIZE + hex + default 0x0 diff --git a/src/arch/mips/Kconfig b/src/arch/mips/Kconfig index 10349f2d1b..71e5dc84eb 100644 --- a/src/arch/mips/Kconfig +++ b/src/arch/mips/Kconfig @@ -39,3 +39,8 @@ config ARCH_ROMSTAGE_MIPS config ARCH_RAMSTAGE_MIPS bool default n + +# Mark SMP stack size as 0 since we keep using SRAM stack throughout ramstage. +config STACK_SIZE + hex + default 0x0 |