summaryrefslogtreecommitdiff
path: root/src/Kconfig
diff options
context:
space:
mode:
authorCristi Magherusan <cristi.magherusan@net.utcluj.ro>2009-08-17 14:46:13 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2009-08-17 14:46:13 +0000
commit488c36c8e755106ff85fc4e6873af75c2b6a79dd (patch)
tree75bf46d743d34cbc5c2a1a054ac3e762277ce771 /src/Kconfig
parent7e92ff343eed84f068070224bd94839de4e931c3 (diff)
downloadcoreboot-488c36c8e755106ff85fc4e6873af75c2b6a79dd.tar.xz
Allow setting up a VGABIOS image in Kconfig
Signed-off-by: Cristi Magherusan <cristi.magherusan@net.utcluj.ro> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4545 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/Kconfig')
-rw-r--r--src/Kconfig26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig
index ca7fa61443..2d7f872bc0 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -238,6 +238,18 @@ 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
@@ -264,6 +276,20 @@ config FALLBACK_PAYLOAD_FILE
help
The path and filename of the ELF executable file to use as fallback payload.
+config FALLBACK_VGA_BIOS_FILE
+ string "VGA BIOS path and filename"
+ depends on VGA_BIOS
+ default "vgabios.bin"
+ help
+ The path and filename of the file to use as VGA BIOS.
+
+config FALLBACK_VGA_BIOS_ID
+ string "VGA BIOS ID"
+ depends on VGA_BIOS
+ default "1106,3230"
+ help
+ The ID that would associate your VGA BIOS to your video card.
+
endmenu
config GDB_STUB