HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/35593 )
Change subject: Kconfig: Change STACK_SIZE value to decimal ......................................................................
Kconfig: Change STACK_SIZE value to decimal
STACK_SIZE value needs to be changed from hex to decimal, since -Wstack-usage doesn't recognize hexadecimal numbers anymore.
Change-Id: I73606d347194af5de5882a3387a4a5db17f9d94b Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/Kconfig M src/soc/cavium/cn81xx/Kconfig 2 files changed, 4 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/93/35593/1
diff --git a/src/Kconfig b/src/Kconfig index a1c016e..2be653e 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -471,9 +471,9 @@ default 0x4000
config STACK_SIZE - hex - default 0x1000 if ARCH_X86 - default 0x0 + int + default 4096 if ARCH_X86 + default 0
config MAX_CPUS int diff --git a/src/soc/cavium/cn81xx/Kconfig b/src/soc/cavium/cn81xx/Kconfig index f64350e..900cade 100644 --- a/src/soc/cavium/cn81xx/Kconfig +++ b/src/soc/cavium/cn81xx/Kconfig @@ -30,7 +30,7 @@ default 0x10000
config STACK_SIZE - default 0x2000 + default 8192
config MMCONF_BASE_ADDRESS default 0x848000000000