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
This commit is contained in:
parent
27f94bf846
commit
91232c1ca6
|
@ -276,6 +276,18 @@ define CACHE_RAM_SIZE
|
||||||
export always
|
export always
|
||||||
comment "Size of cache when using it for temporary RAM"
|
comment "Size of cache when using it for temporary RAM"
|
||||||
end
|
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
|
define CONFIG_COMPRESS
|
||||||
default 1
|
default 1
|
||||||
export always
|
export always
|
||||||
|
|
Loading…
Reference in New Issue