I have try this make command today and yesterday, and the result (below) tell me that "out/bios.bin.elf" Is not found.
Can any body send me a usable version of seabios source.
I know it is better to call for help on IRC, but I can not connect it. (Since irc.freenode.net has dynamic IP address, VIA's firewall can not open a port for all IP.)
------------------------------------------------------------------------ --------------------------------------------
root@jason-desktop:/home/jason/Public/seabios1111# make AVOIDCOMBINE=1
Compiling whole program out/blob.16.s
In file included from out/blob.16.s.tmp.c:3:
out/../src/floppy.c: In function 'floppy_drive_setup':
out/../src/floppy.c:70: warning: dereferencing type-punned pointer will break strict-aliasing rules
out/../src/floppy.c:73: warning: dereferencing type-punned pointer will break strict-aliasing rules
In file included from out/blob.16.s.tmp.c:4:
out/../src/ata.c: In function 'ata_reset':
out/../src/ata.c:118: warning: dereferencing type-punned pointer will break strict-aliasing rules
out/../src/ata.c:119: warning: dereferencing type-punned pointer will break strict-aliasing rules
....
.... Many lines
....
out/../src/pcibios.c: In function 'handle_1ab10e':
out/../src/pcibios.c:120: warning: dereferencing type-punned pointer will break strict-aliasing rules
out/../src/pcibios.c:127: warning: dereferencing type-punned pointer will break strict-aliasing rules
out/../src/pcibios.c:128: warning: dereferencing type-punned pointer will break strict-aliasing rules
out/../src/pcibios.c:137: warning: dereferencing type-punned pointer will break strict-aliasing rules
out/../src/pcibios.c:138: warning: dereferencing type-punned pointer will break strict-aliasing rules
out/../src/pcibios.c:144: warning: dereferencing type-punned pointer will break strict-aliasing rules
Moving data sections to text in out/font.16.s
Generating assembler for src/cbt.c
Moving data sections to text in out/cbt.16.s
Generating assembler for src/floppy_dbt.c
Moving data sections to text in out/floppy_dbt.16.s
Generating 16bit layout of out/romlayout16.o
Compiling whole program out/romlayout32.o
Precompiling src/rombios32.lds.S
Linking (no relocs) out/rom32.o
Precompiling src/rombios16.lds.S
Linking out/rom16.o
Precompiling src/rombios.lds.S
Linking out/rom.o
Prepping out/bios.bin.elf
: No such file or directory
make: *** [out/bios.bin.elf] Error 127
------------------------------------------------------------------------ --------------------------------------------
Hi,
On Wed, Nov 12, 2008 at 11:51:03AM +0800, JasonZhao@viatech.com.cn wrote:
I have try this make command today and yesterday, and the result (below) tell me that "out/bios.bin.elf" Is not found.
What version of gcc are you using? What Linux distro? I've tested on Ubuntu7, Ubuntu8, Fedora8, and Fedora9.
Make sure you're at the latest version (git pull). You may also want to reset the build directory (make clean). Finally, you can run "make AVOIDCOMBINE=1 V=1" to show what commands the build attempted.
Can any body send me a usable version of seabios source.
Latest source is available via git:
git clone git://git.linuxtogo.org/home/kevin/seabios.git
-Kevin
On Tue, Nov 11, 2008 at 11:39:57PM -0500, Kevin O'Connor wrote:
On Wed, Nov 12, 2008 at 11:51:03AM +0800, JasonZhao@viatech.com.cn wrote:
Can any body send me a usable version of seabios source.
Latest source is available via git:
git clone git://git.linuxtogo.org/home/kevin/seabios.git
If you can't use git due to a firewall, you can use:
git clone http://git.linuxtogo.org/~kevin/.git/seabios.git
However, it's better to use the regular git system if you can.
-Kevin
Hi,
-----Original Message----- From: Kevin O'Connor [mailto:kevin@koconnor.net] Sent: Wednesday, November 12, 2008 12:40 PM To: Jason Zhao Cc: coreboot@coreboot.org Subject: Re: [coreboot] "make AVOIDCOMBINE=1" in seabils@git and
prompterror
Hi,
On Wed, Nov 12, 2008 at 11:51:03AM +0800, JasonZhao@viatech.com.cn
wrote:
I have try this make command today and yesterday, and the result
(below)
tell me that "out/bios.bin.elf" Is not found.
What version of gcc are you using? What Linux distro? I've tested on Ubuntu7, Ubuntu8, Fedora8, and Fedora9.
Ubuntu 8.04 and Gcc version is 4.2.3
Make sure you're at the latest version (git pull). You may also want to reset the build directory (make clean). Finally, you can run "make
I run "make clean" , and the same problem
AVOIDCOMBINE=1 V=1" to show what commands the build attempted.
I find some thing new now, but don't know which file it didn't found : rom.o? checkrom.py? or the bios.bin.elf? . The rom.o and checkrom.py exist on my disk. -------------------------------------------------- cc -E -P src/rombios32.lds.S -o out/rombios32.lds Linking (no relocs) out/rom32.o ld -r -d -T out/rombios32.lds out/romlayout32.o -o out/rom32.o Precompiling src/rombios16.lds.S cc -E -P src/rombios16.lds.S -o out/rombios16.lds Linking out/rom16.o objcopy --prefix-symbols=_code32_ out/rom32.o out/rom32.rename.o ld -T out/rombios16.lds -R out/rom32.rename.o out/romlayout16.o -o out/rom16.o Precompiling src/rombios.lds.S cc -E -P src/rombios.lds.S -o out/rombios.lds Linking out/rom.o ld -T out/rombios.lds out/rom16.o out/rom32.o -o out/rom.o Prepping out/bios.bin.elf nm out/rom.o | ./tools/checkrom.py : No such file or directory make: *** [out/bios.bin.elf] Error 127 ------------------------------------------------
Can any body send me a usable version of seabios source.
Latest source is available via git:
git clone git://git.linuxtogo.org/home/kevin/seabios.git
I need to push VIA's IT support people to open the port(9418) of git again. This two days I download the souce code from git://git.linuxtogo.org when I am at home, then bring the code to office through my memory stick. Poor efficiency.
-Kevin
Hi, Kevin I found it is the problem of " #!/usr/bin/end python" in tools/checkroom.py.
I had got python installed on my ubuntu, don't know why it do not work. Thank you, I think I can solve this problem by using google :)
-----Original Message----- From: Kevin O'Connor [mailto:kevin@koconnor.net] Sent: Wednesday, November 12, 2008 12:40 PM To: Jason Zhao Cc: coreboot@coreboot.org Subject: Re: [coreboot] "make AVOIDCOMBINE=1" in seabils@git and
prompterror
Hi,
On Wed, Nov 12, 2008 at 11:51:03AM +0800, JasonZhao@viatech.com.cn
wrote:
I have try this make command today and yesterday, and the result
(below)
tell me that "out/bios.bin.elf" Is not found.
What version of gcc are you using? What Linux distro? I've tested on Ubuntu7, Ubuntu8, Fedora8, and Fedora9.
Make sure you're at the latest version (git pull). You may also want to reset the build directory (make clean). Finally, you can run "make AVOIDCOMBINE=1 V=1" to show what commands the build attempted.
Can any body send me a usable version of seabios source.
Latest source is available via git:
git clone git://git.linuxtogo.org/home/kevin/seabios.git
-Kevin
Hello Jason,
JasonZhao@viatech.com.cn wrote:
I know it is better to call for help on IRC,
Yes and no. If people are active in the channel you could get faster responses to your question, but on the other hand you know that someone will reply to the mailing list sooner or later.
Also, the mailing list is archived, which is good because others who run into the same problem later can then find the solution that helped you. :)
but I can not connect it. (Since irc.freenode.net has dynamic IP address, VIA's firewall can not open a port for all IP.)
You can try using a web-based IRC client. I tested two yesterday that work ok:
http://www.web-irc.org/ http://www.mibbit.com/
Prepping out/bios.bin.elf
: No such file or directory
Please let us know if no solution is found for this problem. Maybe the problem you encountered is something we need to fix in SeaBIOS ?
//Peter