<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="gmail_quote"><div>Coreboot-v1 is VERY old, IIRC it requires gcc 2.xx to compile. Perhaps I could talk you into using coreboot-v2 instead? I see that the Axus TC320 and Bcom WinNet 100 share the same hardware as your board, so porting your board shouldn't require much work. You can find a build tutorial here: <a href="http://www.coreboot.org/AXUS_TC320#Building_a_LinuxBIOS_image" target="_blank">http://www.coreboot.org/AXUS_TC320#Building_a_LinuxBIOS_image</a> and various other resources by exploring around <a href="http://coreboot.org" target="_blank">coreboot.org</a>. If you need a hand, let us know!<br>

</div></div></blockquote></div><br><br>I have already compiled an Coreboot rom and have burned it into a chip using a PROM burner.   However, I could not see any output from the console.  Reading the article from the other person who has successfully compiled Coreboot + Etherboot, the com port of the Acer WT 300 is in com 2 and not com 1.  As I understand it, the default com port for coreboot is ttyS0. What option can I use to change the default console port to ttyS1?  There seems to be no options for this from the Wiki page which lists the available options for Coreboot V2.  My config file is below:<br>
<br>-----------------------------------------------------------------------------------------------------<br>target tc320<br>mainboard axus/tc320<br><br>option ROM_SIZE = 256 * 1024<br><br>## Enable VGA with a splash screen (only 640x480 to run on most monitors).<br>
## We want to support up to 1024x768@16 so we need 2MiB video memory.<br>## Note: Higher resolutions might need faster SDRAM speed.<br>option CONFIG_GX1_VIDEO = 1<br>option CONFIG_GX1_VIDEOMODE = 0<br>option CONFIG_SPLASH_GRAPHIC = 1<br>
option CONFIG_VIDEO_MB = 2<br><br>option DEFAULT_CONSOLE_LOGLEVEL = 6<br>option MAXIMUM_CONSOLE_LOGLEVEL = 6<br><br>romimage "normal"<br>    option USE_FALLBACK_IMAGE = 0<br>    option COREBOOT_EXTRA_VERSION = ".0Normal"<br>
    payload /home/holden/src/images/eb-5.4.3-pcnet32.elf<br>end<br><br>#romimage "fallback"<br>#    option USE_FALLBACK_IMAGE = 1<br>#    option COREBOOT_EXTRA_VERSION = ".0Fallback"<br>#    payload ../../../../../../../images/etherboot.elf<br>
#end<br><br>buildrom ./coreboot.rom ROM_SIZE "normal"<br><br>----------------------------------------------------------------------------------------<br><br>Thank you for the assistance.<br><br><br><br>Holden<br>