diff options
author | Daniel Toussaint <daniel@dmhome.net> | 2009-04-06 13:38:54 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-04-06 13:38:54 +0000 |
commit | da6d92ba11ced79f0e4c6c409d37d6e36d73fd91 (patch) | |
tree | fe03ed31f374900766e335d2b50037467a4a3343 /targets/technexion/tim8690/Config.lb | |
parent | 38891ab7e62c539a98f435c553481a85c7a8ae1e (diff) | |
download | coreboot-da6d92ba11ced79f0e4c6c409d37d6e36d73fd91.tar.xz |
Daniel Toussaint wrote:
As I mentioned a few weeks ago, I am in the process of porting this board:
http://www.technexion.com/products/embedded_boards/tim-8690-mt.html
This board has a dual BIOS , choosable with a jumper - much like the BIOS
savier from before - so it is a pleasure to work with as a linuxbios developer.
It is still a work in progress, however , I already submit the patch.
All on board devices and slots work as expected, only need some more stress
testing with the RAM, acpi, etc..
Signed-off-by: Daniel Toussaint <daniel@dmhome.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4075 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'targets/technexion/tim8690/Config.lb')
-rw-r--r-- | targets/technexion/tim8690/Config.lb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/targets/technexion/tim8690/Config.lb b/targets/technexion/tim8690/Config.lb new file mode 100644 index 0000000000..80330e48dc --- /dev/null +++ b/targets/technexion/tim8690/Config.lb @@ -0,0 +1,27 @@ +# This will make a target directory of ./tim8690 + +target tim8690 +mainboard technexion/tim8690 + + +romimage "normal" + option ROM_SIZE = 1024*512 - 55808 + option USE_FALLBACK_IMAGE=0 + option ROM_IMAGE_SIZE=0x20000 + option XIP_ROM_SIZE=0x20000 + payload /home/daniel/mypayloads/link +end + +romimage "fallback" + option FALLBACK_SIZE= 1024*512 - 55808 + option USE_FALLBACK_IMAGE=1 + option ROM_IMAGE_SIZE=0x20000 + option XIP_ROM_SIZE=0x20000 + payload /home/daniel/mypayloads/link + +end + +buildrom ./coreboot.rom ROM_SIZE "fallback" + + + |