Re: [coreboot] Tyan s2912-e (fam10h)

2013-09-09 Thread Stojsavljevic, Zoran
Hello Mark, I am not sure why you are booting from BIOS (and what kind of BIOS you are using?), but I do not see any necessity to boot from BIOS to Coreboot. You should boot from BIOS to GRUB, most probable. It seems that your BIOS is working and booting, but not handing thread of execution to

Re: [coreboot] Please advise: (new toolkit) crossgcc fails on ubuntu 32/64 bit fresh installs

2013-09-09 Thread Andrew Wu
Hi, You can see util/crossgcc/Makefile : all: build build: bash ./buildgcc -G -p i386-elf bash ./buildgcc -G -p armv7a-eabi .PHONY: build-without-gdb build-without-gdb: bash ./buildgcc -p i386-elf bash ./buildgcc -p armv7a-eabi clean: rm -rf xgcc .PHONY: all build clean

Re: [coreboot] Please advise: (new toolkit) crossgcc fails on ubuntu 32/64 bit fresh installs

2013-09-09 Thread Mark Mc
Hi, Removing armv7 target fromthe util/crossgcc/Makefile removed so much output from the crossgcc-build.log that the actual problem became obvious I was missing g++, so now crossgcc compiles, cheers for the help guys -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/

[coreboot] Tyan s2912-E reset loop, Please help

2013-09-09 Thread Mark Mc
Hi, I finally got coreboot compiled correctly and I am getting somewhere as my console output shows: coreboot-4.0-4671-g25dd247 Mon Sep 9 23:54:49 BST 2013 starting... BSP Family_Model: 00100f80 *sysinfo range: [000c4000,000c5fa0] bsp_apicid = 00 cpu_init_detectedx = microcode: rev id no

Re: [coreboot] Tyan s2912-E reset loop, Please help

2013-09-09 Thread Kyösti Mälkki
On Tue, 2013-09-10 at 02:01 +0100, Mark Mc wrote: > Hi, I finally got coreboot compiled correctly and I am getting > somewhere as my console output shows: > > coreboot-4.0-4671-g25dd247 Mon Sep 9 23:54:49 BST 2013 starting... > BSP Family_Model: 00100f80 > *sysinfo range: [000c4000,000c5fa0] > bs

Re: [coreboot] Please advise: (new toolkit) crossgcc fails on ubuntu 32/64 bit fresh installs

2013-09-09 Thread Peter Stuge
Andrew Wu wrote: > You can see util/crossgcc/Makefile : > > > all: build > > build: > bash ./buildgcc -G -p i386-elf > bash ./buildgcc -G -p armv7a-eabi IMNSHO this is a stupid problem seriously in need of an intelligent solution. I can not understand the rationale for defaulting to wh

Re: [coreboot] Please advise: (new toolkit) crossgcc fails on ubuntu 32/64 bit fresh installs

2013-09-09 Thread David Hubbard
On Mon, Sep 9, 2013 at 10:17 PM, Peter Stuge wrote: > Andrew Wu wrote: > > You can see util/crossgcc/Makefile : > > > > > > all: build > > > > build: > > bash ./buildgcc -G -p i386-elf > > bash ./buildgcc -G -p armv7a-eabi > > IMNSHO this is a stupid problem seriously in need of an intell

Re: [coreboot] Please advise: (new toolkit) crossgcc fails on ubuntu 32/64 bit fresh installs

2013-09-09 Thread Peter Stuge
David Hubbard wrote: > My locally modified util/crossgcc/Makefile does not do armv7, but instead: > > bash ./buildgcc -j $(shell awk '/^processor/{n=n+1}END{print n+1}' > /proc/cpuinfo) -p i386-elf This is great on Linux but unfortunately not portable. > Who is the maintainer of the build syst