da6d92ba11
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
27 lines
524 B
Text
27 lines
524 B
Text
# 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"
|
|
|
|
|
|
|