diff options
author | Peter Stuge <peter@stuge.se> | 2009-09-17 16:21:31 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2009-09-17 16:21:31 +0000 |
commit | a758ca2ba9adc5b6ad01e5fe2515e0d636fffad2 (patch) | |
tree | 2f8c80b5e1435cdf23aeedc0ef634b58bac18d82 /src/Kconfig | |
parent | 5a1af7b877192143fdb12f98062caa458a1e02e0 (diff) |
Move VGA BIOS settings from the payload menu into it's own menu
Remove dependency on PAYLOAD_ELF so that config items are shown.
Build tested. With this, coreboot.rom has a VGA BIOS optionrom added.
Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4642 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/src/Kconfig b/src/Kconfig index e1789b20a2..022f7bfe2f 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -238,17 +238,6 @@ config PAYLOAD_ELF You will be able to specify the location and file name of the payload image later. - -config VGA_BIOS - bool "Add a VGA BIOS image" - depends on PAYLOAD_ELF - help - Select this option if you have a VGA BIOS image that you would - like to add to your ROM. - - You will be able to specify the location and file name of the - image later. - config PAYLOAD_NONE bool "No payload" help @@ -268,6 +257,19 @@ config FALLBACK_PAYLOAD_FILE help The path and filename of the ELF executable file to use as payload. +endmenu + +menu "VGA BIOS" + +config VGA_BIOS + bool "Add a VGA BIOS image" + help + Select this option if you have a VGA BIOS image that you would + like to add to your ROM. + + You will be able to specify the location and file name of the + image later. + config FALLBACK_VGA_BIOS_FILE string "VGA BIOS path and filename" depends on VGA_BIOS |