SeaBIOS/Kconfig: Remove SEABIOS_MALLOC_UPPERMEMORY option
This has been replaced by the PAYLOAD_CONFIGFILE option, allowing any SeaBIOS config option to be set by a platform. Change-Id: I584c4c481266740840158baba76581d68e69b448 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/12570 Tested-by: build bot (Jenkins) Reviewed-by: Alexander Couzens <lynxis@fe80.eu>
This commit is contained in:
parent
c6a8d2ca7b
commit
6e1192019e
|
@ -54,8 +54,7 @@ seabios:
|
||||||
CONFIG_SEABIOS_THREAD_OPTIONROMS=$(CONFIG_SEABIOS_THREAD_OPTIONROMS) \
|
CONFIG_SEABIOS_THREAD_OPTIONROMS=$(CONFIG_SEABIOS_THREAD_OPTIONROMS) \
|
||||||
CONFIG_SEABIOS_VGA_COREBOOT=$(CONFIG_SEABIOS_VGA_COREBOOT) \
|
CONFIG_SEABIOS_VGA_COREBOOT=$(CONFIG_SEABIOS_VGA_COREBOOT) \
|
||||||
CONFIG_CONSOLE_SERIAL=$(CONFIG_CONSOLE_SERIAL) \
|
CONFIG_CONSOLE_SERIAL=$(CONFIG_CONSOLE_SERIAL) \
|
||||||
CONFIG_TTYS0_BASE=$(CONFIG_TTYS0_BASE) \
|
CONFIG_TTYS0_BASE=$(CONFIG_TTYS0_BASE)
|
||||||
CONFIG_SEABIOS_MALLOC_UPPERMEMORY=$(CONFIG_SEABIOS_MALLOC_UPPERMEMORY)
|
|
||||||
|
|
||||||
payloads/external/SeaBIOS/seabios/out/vgabios.bin: seabios
|
payloads/external/SeaBIOS/seabios/out/vgabios.bin: seabios
|
||||||
payloads/external/SeaBIOS/seabios/out/bios.bin.elf: seabios
|
payloads/external/SeaBIOS/seabios/out/bios.bin.elf: seabios
|
||||||
|
|
|
@ -35,18 +35,6 @@ config SEABIOS_THREAD_OPTIONROMS
|
||||||
variations during option ROM code execution. It is not
|
variations during option ROM code execution. It is not
|
||||||
known if all option ROMs will behave properly with this option.
|
known if all option ROMs will behave properly with this option.
|
||||||
|
|
||||||
config SEABIOS_MALLOC_UPPERMEMORY
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
help
|
|
||||||
Use the "Upper Memory Block" area (0xc0000-0xf0000) for internal
|
|
||||||
"low memory" allocations. If this is not selected, the memory is
|
|
||||||
instead allocated from the "9-segment" (0x90000-0xa0000).
|
|
||||||
This is not typically needed, but may be required on some platforms
|
|
||||||
to allow USB and SATA buffers to be written correctly by the
|
|
||||||
hardware. In general, if this is desired, the option will be
|
|
||||||
set to 'N' by the chipset Kconfig.
|
|
||||||
|
|
||||||
config SEABIOS_VGA_COREBOOT
|
config SEABIOS_VGA_COREBOOT
|
||||||
prompt "Include generated option rom that implements legacy VGA BIOS compatibility"
|
prompt "Include generated option rom that implements legacy VGA BIOS compatibility"
|
||||||
default n
|
default n
|
||||||
|
|
|
@ -31,9 +31,6 @@ ifeq ($(CONFIG_CONSOLE_SERIAL),y)
|
||||||
else
|
else
|
||||||
echo "# CONFIG_DEBUG_SERIAL is not set" >> seabios/.config
|
echo "# CONFIG_DEBUG_SERIAL is not set" >> seabios/.config
|
||||||
endif
|
endif
|
||||||
ifneq ($(CONFIG_SEABIOS_MALLOC_UPPERMEMORY),y)
|
|
||||||
echo "# CONFIG_MALLOC_UPPERMEMORY is not set" >> seabios/.config
|
|
||||||
endif
|
|
||||||
ifneq ($(CONFIG_SEABIOS_THREAD_OPTIONROMS),y)
|
ifneq ($(CONFIG_SEABIOS_THREAD_OPTIONROMS),y)
|
||||||
echo "# CONFIG_THREAD_OPTIONROMS is not set" >> seabios/.config
|
echo "# CONFIG_THREAD_OPTIONROMS is not set" >> seabios/.config
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue