diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2006-10-18 15:46:24 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2006-10-18 15:46:24 +0000 |
commit | 69fd463a1b2f774ab0628737242d4b414635d327 (patch) | |
tree | 51e28ae1c373f59354fe29f928948d75cb27a545 /targets | |
parent | 31101c9201a536146ac70429e1bd73502ad24527 (diff) | |
download | coreboot-69fd463a1b2f774ab0628737242d4b414635d327.tar.xz |
add btest mainboard
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2460 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'targets')
-rw-r--r-- | targets/olpc/btest/Config.lb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/targets/olpc/btest/Config.lb b/targets/olpc/btest/Config.lb new file mode 100644 index 0000000000..03e3b9c79c --- /dev/null +++ b/targets/olpc/btest/Config.lb @@ -0,0 +1,24 @@ +# Config file for the olpc btest + +target btest +mainboard olpc/btest + +# Don't let LinuxBIOS compress the payload +#option CONFIG_COMPRESSED_ROM_STREAM_NRV2B=0 +#option CONFIG_COMPRESSED_ROM_STREAM_LZMA=1 +#option CONFIG_PRECOMPRESSED_ROM_STREAM=0 + +# leave 64k for vsa and 64k for EC code +option ROM_SIZE=(1024*1024)-(64*1024)-(64*1024) +option FALLBACK_SIZE=ROM_SIZE + +option DEFAULT_CONSOLE_LOGLEVEL = 11 +option MAXIMUM_CONSOLE_LOGLEVEL = 11 +romimage "fallback" + option USE_FALLBACK_IMAGE=1 + option ROM_IMAGE_SIZE=32*1024 + option LINUXBIOS_EXTRA_VERSION=".0Fallback" + payload /tmp/olpcpayload.elf +end + +buildrom ./linuxbios.rom ROM_SIZE "fallback" |