diff options
author | Stefan Reinauer <stepan@openbios.org> | 2003-08-06 10:45:57 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2003-08-06 10:45:57 +0000 |
commit | 91232c1ca610e149c6f95e9647849ab821d7d8b8 (patch) | |
tree | 13f2657b42acf13cd696290878ac3cc174b7f4e6 | |
parent | 27f94bf84689a7b343481831eb1e48855a993e7a (diff) |
add XIP_ROM_[BASE|SIZE] to newconfig for quicker bootup
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1080 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/config/Options.lb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/config/Options.lb b/src/config/Options.lb index 6170ea28a1..54cd68d384 100644 --- a/src/config/Options.lb +++ b/src/config/Options.lb @@ -276,6 +276,18 @@ define CACHE_RAM_SIZE export always comment "Size of cache when using it for temporary RAM" end +define XIP_ROM_BASE + default 0xffff8000 + format "0x%x" + export used + comment "base address of range of ROM that can be cached to speed up linuxBIOS" +end +define XIP_ROM_SIZE + default 0x8000 + format "0x%x" + export used + comment "size of range of ROM that can be cached to speed up linuxBIOS" +end define CONFIG_COMPRESS default 1 export always |