diff options
author | Myles Watson <mylesgw@gmail.com> | 2008-04-23 21:06:08 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2008-04-23 21:06:08 +0000 |
commit | e4c98d28992b2c0724d6465738cf93eeda39b914 (patch) | |
tree | 244942891024a927c379016ec194913a9c11cd07 /targets | |
parent | 3d1d3b23f07282d4a8bda4814b21cc6938475843 (diff) | |
download | coreboot-e4c98d28992b2c0724d6465738cf93eeda39b914.tar.xz |
These config files are so that buildrom can use these two boards.
Myles
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Ward Vandewege <ward@gnu.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3257 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'targets')
-rw-r--r-- | targets/tyan/s2892/Config-lab.lb | 26 | ||||
-rw-r--r-- | targets/tyan/s2895/Config-lab.lb | 24 |
2 files changed, 50 insertions, 0 deletions
diff --git a/targets/tyan/s2892/Config-lab.lb b/targets/tyan/s2892/Config-lab.lb new file mode 100644 index 0000000000..169023f783 --- /dev/null +++ b/targets/tyan/s2892/Config-lab.lb @@ -0,0 +1,26 @@ +# Sample config file for +# the Tyan s2892 +# This will make a target directory of ./s2892 + +target s2892 +mainboard tyan/s2892 + +# Leave Space for VGA BIOS +option ROM_SIZE = 1024*1024-36*1024 +#option ROM_SIZE = 1024*1024 +option CONFIG_CONSOLE_SERIAL8250 = 1 +option CONFIG_CONSOLE_VGA = 1 +option XIP_ROM_SIZE = 0x20000 +option ROM_IMAGE_SIZE = 0x18000 +option FALLBACK_SIZE = ROM_SIZE + +# Tyan s2892 +romimage "fallback" + option CONFIG_COMPRESSED_PAYLOAD_LZMA=1 + option CONFIG_PRECOMPRESSED_PAYLOAD=1 + option USE_FALLBACK_IMAGE=1 + option COREBOOT_EXTRA_VERSION="$(shell cat ../../VERSION)_Fallback" + payload ../payload.elf.lzma +end + +buildrom ./coreboot.rom ROM_SIZE "fallback" diff --git a/targets/tyan/s2895/Config-lab.lb b/targets/tyan/s2895/Config-lab.lb new file mode 100644 index 0000000000..2e04f03bcc --- /dev/null +++ b/targets/tyan/s2895/Config-lab.lb @@ -0,0 +1,24 @@ +# Sample config file for +# the Tyan s2892 +# This will make a target directory of ./s2892 + +target s2895 +mainboard tyan/s2895 + +option ROM_SIZE = 1024*1024 +option CONFIG_CONSOLE_SERIAL8250 = 1 +option CONFIG_CONSOLE_VGA = 1 +option XIP_ROM_SIZE = 0x20000 +option ROM_IMAGE_SIZE = 0x18000 +option FALLBACK_SIZE = ROM_SIZE + +# Tyan s2895 +romimage "fallback" + option CONFIG_COMPRESSED_PAYLOAD_LZMA=1 + option CONFIG_PRECOMPRESSED_PAYLOAD=1 + option USE_FALLBACK_IMAGE=1 + option COREBOOT_EXTRA_VERSION="$(shell cat ../../VERSION)_Fallback" + payload ../payload.elf.lzma +end + +buildrom ./coreboot.rom ROM_SIZE "fallback" |