coreboot for this board. I'd like to get this in so some folks who need to see it can see it. This is assembled from other boards so far. Once I start real changes I'll modify copyright as needed.
thanks
ron
Hi Ron,
On Tue, Jun 17, 2008 at 06:09:51PM -0700, ron minnich wrote:
This is for the supermicro h8qm8. I am on a short fuse here (trying to fix a problem) and want to get this initial pass in, esp. for amd to see.
The parts are put together from serengeti_cheetah_fam10 and m57sli (which has mcp55).
I will add copyright when it starts to make sense.
Also, this is from code already in the code tree. I don't think we need too long a discussion of formatting ;-)
Status: almost compiles: /usr/bin/ld: warning: dot moved backwards before `.id' /usr/bin/ld: warning: dot moved backwards before `.id' /usr/bin/ld: warning: dot moved backwards before `.id' crt0.o: In function `finalize_node_setup': crt0.S:(.rom.text+0x47a3): undefined reference to `get_sbdn' crt0.o: In function `real_main': crt0.S:(.rom.text+0xc16a): undefined reference to `soft_reset' collect2: ld returned 1 exit status
There's a bit more work left but I like having this on the svn server, not on my laptop.
Signed-off-by: Ronald G. Minnich rminnich@gmail.com
Acked-by: Ward Vandewege ward@gnu.org
if you do not commit this spurious hunk:
Index: targets/gigabyte/ga_2761gxdk/Config.lb
--- targets/gigabyte/ga_2761gxdk/Config.lb (revision 3366) +++ targets/gigabyte/ga_2761gxdk/Config.lb (working copy) @@ -32,8 +32,13 @@ option ROM_IMAGE_SIZE=0x20000 option XIP_ROM_SIZE=0x40000 option COREBOOT_EXTRA_VERSION="$(shell cat ../../VERSION)_Normal" +<<<<<<< .mine +# payload ../../../../payloads/filo_uda1.elf
- payload /tmp/filo.elf
+======= # payload ../../../../payloads/filo_uda1.elf payload ../payload.elf +>>>>>>> .r3127 end
romimage "fallback" @@ -42,8 +47,13 @@ option ROM_IMAGE_SIZE=0x20000 option XIP_ROM_SIZE=0x40000 option COREBOOT_EXTRA_VERSION="$(shell cat ../../VERSION)_Fallback" +<<<<<<< .mine +# payload ../../../../payloads/filo_uda1.elf
- payload /tmp/filo.elf
+======= # payload ../../../../payloads/filo_uda1.elf payload ../payload.elf +>>>>>>> .r3127 end
romimage "failover"
Thanks, Ward.