mirror of
https://xff.cz/git/u-boot/
synced 2025-10-01 23:41:18 +02:00
x86: rename CONFIG_STACK_SIZE
Configuration variables should have the same meaning independent of the architecture. x86 and ARM both use CONFIG_STACK_SIZE: * x86: U-Boot's runtime stack size during reboot * ARM: max stack size that can be used by U-Boot Rename the x86 configuration variable to CONFIG_STACK_SIZE_REBOOT Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
@@ -811,7 +811,7 @@ config S3_VGA_ROM_RUN
|
|||||||
graphics console won't work without VGA options ROMs. Set it to N
|
graphics console won't work without VGA options ROMs. Set it to N
|
||||||
if your kernel is only on a serial console.
|
if your kernel is only on a serial console.
|
||||||
|
|
||||||
config STACK_SIZE
|
config STACK_SIZE_RESUME
|
||||||
hex
|
hex
|
||||||
depends on HAVE_ACPI_RESUME
|
depends on HAVE_ACPI_RESUME
|
||||||
default 0x1000
|
default 0x1000
|
||||||
|
@@ -121,7 +121,7 @@ unsigned int install_e820_map(unsigned int max_entries,
|
|||||||
ulong stack_size;
|
ulong stack_size;
|
||||||
|
|
||||||
stack_size = CONFIG_IS_ENABLED(HAVE_ACPI_RESUME,
|
stack_size = CONFIG_IS_ENABLED(HAVE_ACPI_RESUME,
|
||||||
(CONFIG_STACK_SIZE), (0));
|
(CONFIG_STACK_SIZE_RESUME), (0));
|
||||||
/*
|
/*
|
||||||
* Everything between U-Boot's stack and ram top needs to be
|
* Everything between U-Boot's stack and ram top needs to be
|
||||||
* reserved in order for ACPI S3 resume to work.
|
* reserved in order for ACPI S3 resume to work.
|
||||||
|
Reference in New Issue
Block a user