mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
* fix up device specific code to honour those switches * quoting fix for xcompile * drop VGA_CONSOLE as it's not really useful for debugging purposes. VGA is only set up very late in the boot process, when everything critical in LinuxBIOS has already been initialized. If LinuxBIOS fails, you will never see this on the console. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@269 f3766cd6-281f-0410-b1cd-43a5c92072e9
55 lines
1.3 KiB
Text
55 lines
1.3 KiB
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see http://lxr.linux.no/source/Documentation/kbuild/kconfig-language.txt.
|
|
#
|
|
|
|
mainmenu "LinuxBIOS Configuration"
|
|
|
|
menu "General setup"
|
|
|
|
config EXPERIMENTAL
|
|
bool "Prompt for development and/or incomplete code/mainboards"
|
|
help
|
|
Enable this option if you want to test development features or
|
|
incomplete/unsupported mainboards.
|
|
|
|
We do not make any guarantees about anything that is marked
|
|
as EXPERIMENTAL! You have been warned!
|
|
|
|
config EXPERT
|
|
bool "Expert mode"
|
|
help
|
|
This allows you to select certain advanced configuration options.
|
|
It is mainly intended for LinuxBIOS developers.
|
|
|
|
Warning: Only enable this option if you really know what you're
|
|
doing! You have been warned!
|
|
|
|
config LOCALVERSION
|
|
string "Local version - append to LinuxBIOS release"
|
|
help
|
|
Append an extra string to the end of the LinuxBIOS version.
|
|
|
|
endmenu
|
|
|
|
source mainboard/Kconfig
|
|
source arch/Kconfig
|
|
source lib/Kconfig
|
|
source console/Kconfig
|
|
source device/Kconfig
|
|
|
|
# These are used for internal purposes only.
|
|
source northbridge/Kconfig
|
|
source southbridge/Kconfig
|
|
source superio/Kconfig
|
|
|
|
menu "Payload"
|
|
|
|
config PAYLOAD
|
|
string "Payload path and filename"
|
|
default "filo.elf"
|
|
help
|
|
The path and filename of the LinuxBIOS payload to use.
|
|
|
|
endmenu
|
|
|