diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-09-24 10:06:16 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-09-30 12:26:08 +0200 |
commit | 85f8fac87526341d775b02a0bfbc29d97f3ba22a (patch) | |
tree | 0a5b0ea8ae4ea419505f822b8f254bbbb738e0b6 /src/Kconfig | |
parent | d3c971e35eedbccd07d9c095579b6132add30881 (diff) | |
download | seabios-85f8fac87526341d775b02a0bfbc29d97f3ba22a.tar.gz |
build: explicitly set ROM size
Add a config option to specify the rom size wanted. Default is zero,
which will automatically figure the needed size.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index c40cc610..20d2a3ed 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -122,6 +122,17 @@ endchoice selected, the memory is instead allocated from the "9-segment" (0x90000-0xa0000). + config ROM_SIZE + int "ROM size (in KB)" + default 0 + help + Set the ROM size. Say '0' here to make seabios figure the + needed size automatically. + + Currently SeaBIOS will easily fit into 256 KB. To make it fit + it into 128 KB (which was big enouth for a long time) you'll + probably have to disable some featues such as xhci support. + endmenu menu "Hardware support" |