diff options
author | Libra Li <libra.li@technexion.com> | 2009-10-14 03:19:33 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-10-14 03:19:33 +0000 |
commit | 9a04f17af064927db63655dc26e5d583457232bb (patch) | |
tree | ccb8299adbe970e8b58c01bc82669d2f824aa081 /targets/technexion/tim5690/Config.lb | |
parent | 59b2dc2cf2c24a9f9ea5e635a31b49ef4c1ef05a (diff) |
Add forgotten target files for technexion/tim5690.
Signed-off-by: Libra Li <libra.li@technexion.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4774 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'targets/technexion/tim5690/Config.lb')
-rw-r--r-- | targets/technexion/tim5690/Config.lb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/targets/technexion/tim5690/Config.lb b/targets/technexion/tim5690/Config.lb new file mode 100644 index 0000000000..eeb97cccd8 --- /dev/null +++ b/targets/technexion/tim5690/Config.lb @@ -0,0 +1,31 @@ +# This will make a target directory of ./tim5690 + +target tim5690 +mainboard technexion/tim5690 + +option CONFIG_ROM_SIZE = (1024*512) +#option CONFIG_ROM_SIZE = (1024*1024*1) +#option CONFIG_ROM_SIZE = (1024*1024*2) +#option CONFIG_ROM_SIZE = (1024*1024*4) + +option CONFIG_COMPRESSED_PAYLOAD_LZMA=1 + + +romimage "normal" + option CONFIG_USE_FALLBACK_IMAGE=0 + option CONFIG_ROM_IMAGE_SIZE=0x20000 + option CONFIG_XIP_ROM_SIZE=0x20000 + + payload ../payload.elf +end + +romimage "fallback" + option CONFIG_USE_FALLBACK_IMAGE=1 + option CONFIG_ROM_IMAGE_SIZE=0x20000 + option CONFIG_XIP_ROM_SIZE=0x20000 + + payload ../payload.elf +end + +buildrom ./coreboot.rom CONFIG_ROM_SIZE "fallback" + |