Re: Freebios1 STPC Elite development board changes attached

2004-02-25 Thread Fathi BOUDRA
Hi, thanks for all, the compile works now. I used the redhat 7.1. with Debian stable (woody) it works also. Now i try to use the romimage with my stpc elite board but it hangs after: Call init Enabling com device: 04 iobase = 0x03f8 irq=4 after this some strange character ... On

Re: Freebios1 STPC Elite development board changes attached

2004-02-25 Thread Fathi BOUDRA
my superio base adress is 0x370. the debug show : handle_superio: port 0x0, defaultport 0x3f0 handle_superio: using port 0x3f0 in the Makefile.settings, i have : export SMC_BASE:=0x370 what's wrong ? > Hi, > > thanks for all, the compile works now. I used the redhat 7.1. > with Debian stable (

Re: Freebios1 STPC Elite development board changes attached

2004-02-25 Thread ron minnich
On Wed, 25 Feb 2004, Fathi BOUDRA wrote: > my superio base adress is 0x370. > > the debug show : > handle_superio: port 0x0, defaultport 0x3f0 > handle_superio: using port 0x3f0 > > in the Makefile.settings, i have : > export SMC_BASE:=0x370 OK, you've found the problem. Send me your configure

Re: Freebios1 STPC Elite development board changes attached

2004-02-25 Thread Fathi BOUDRA
> On Wed, 25 Feb 2004, Fathi BOUDRA wrote: > > my superio base adress is 0x370. > > > > the debug show : > > handle_superio: port 0x0, defaultport 0x3f0 > > handle_superio: using port 0x3f0 > > > > in the Makefile.settings, i have : > > export SMC_BASE:=0x370 > > OK, you've found the problem. Send

Re: Freebios1 STPC Elite development board changes attached

2004-02-25 Thread ron minnich
send the config file for the src/mainboard/elite ron ___ Linuxbios mailing list [EMAIL PROTECTED] http://www.clustermatic.org/mailman/listinfo/linuxbios

Re: Freebios1 STPC Elite development board changes attached

2004-02-25 Thread Fathi BOUDRA
Le Mercredi 25 Février 2004 15:57, ron minnich a écrit : > send the config file for the src/mainboard/elite > > ron > > ___ > Linuxbios mailing list > [EMAIL PROTECTED] > http://www.clustermatic.org/mailman/listinfo/linuxbios arch i386 mainboardinit cpu/i

Re: Freebios1 STPC Elite development board changes attached

2004-02-25 Thread ron minnich
nsuperio SMC/fdc37b78x com1={1,9600} floppy=0 lpt=0 keyboard=0 This line is what is really going to set the SMC base unless the code is incorrectly written. So to change the port you can try this: nsuperio SMC/fdc37b78x port=0x3f0 com1={1,9600} floppy=0 lpt=0 keyboard=0 try that and let me k

Re: Freebios1 STPC Elite development board changes attached

2004-02-25 Thread Fathi BOUDRA
ok it works, the boot doesn't hang anymore, but now i have an infinite loop after the jump to the boot code : Jumping to boot code at 0x1048dc FILO version 0.4 ... i send a capture of what I have. Probably a problem with filo now. > nsuperio SMC/fdc37b78x com1={1,9600} floppy=0 lpt=0 keyboard=

Re: Freebios1 STPC Elite development board changes attached

2004-02-25 Thread ron minnich
is your filo trying to use VGA? make sure that it is only trying to use the serial port. ron ___ Linuxbios mailing list [EMAIL PROTECTED] http://www.clustermatic.org/mailman/listinfo/linuxbios

Re: Freebios1 STPC Elite development board changes attached

2004-02-25 Thread Fathi BOUDRA
no, i use set these options : VGA_CONSOLE = 0 PC_KEYBOARD = 0 this is ok, the same problem of peter fox. I used the modified timer.c for filo (don't use rdtsc in filo because it's a 486) and now it works. if someone need it, i join it. > is your filo trying to use VGA? make sure that it is only

DFI AZ30-TL

2004-02-25 Thread Justin C. Darby
I have a DFI AZ30-TL sitting in the corner, now collecting dust, that I built for a little duron box in the recent past. The boards, even new, are really cheap, and I was wondering if LinuxBIOS had enough support to get ide booting (via cf adapter) and video to work on them. I want to use this boar

Quick linux question

2004-02-25 Thread Dave Ashley
This is off-topic but I'm hoping someone here will know the answer. In the linux kernel I need to make a module that will map the BOOTROM of an RTL8139 based network card into PCI memory somewhere. I need to write the pci config longword at offset 0x30 with the bus address. I can arbitrarily pick o

Re: Puzzled. Help Please !

2004-02-25 Thread Hendricks David W.
Hmm, I used "file" on one of the rom images i built for the K8s and they also appear as ELFs. Wasn't there a problem with "file?" On Mon, 23 Feb 2004, ron minnich wrote: > the payload is an elfimage. But 'romimage' should not be elf. It is just a > raw romimage to be burned onto flash. > > I

Re: Puzzled. Help Please !

2004-02-25 Thread Stefan Reinauer
* Hendricks David W. <[EMAIL PROTECTED]> [040225 22:14]: > Hmm, I used "file" on one of the rom images i built for the K8s and > they also appear as ELFs. Wasn't there a problem with "file?" I'd guess, since LinuxBIOS is at the end of the image, file sees the payload of the image (which is normal

Re: Puzzled. Help Please !

2004-02-25 Thread ron minnich
On Wed, 25 Feb 2004, Hendricks David W. wrote: > Hmm, I used "file" on one of the rom images i built for the K8s and > they also appear as ELFs. Wasn't there a problem with "file?" yes there is sometimes a problem with file. The issue is that the payload in linuxbios rom is an elfimage, so that

IP get via Etherboot and IP get dhcpcd

2004-02-25 Thread YhLu
Eric, I put the the dhcpcd in the initrd. After boot system with LinuxBIOS + Etherboot + elf ( with the initrd). I found the IP got by Etherboot and dhcpcd is different. I may only used fixed option in dhcpd.conf to make it get the same addr? Regards Yinghai Lu ___

Re: IP get via Etherboot and IP get dhcpcd

2004-02-25 Thread Peter Stuge
On Wed, Feb 25, 2004 at 05:10:44PM -0800, YhLu wrote: > Eric, > > I put the the dhcpcd in the initrd. After boot system with LinuxBIOS + > Etherboot + elf ( with the initrd). I found the IP got by Etherboot and > dhcpcd is different. > > I may only used fixed option in dhcpd.conf to make it get t

Re: IP get via Etherboot and IP get dhcpcd

2004-02-25 Thread Eric W. Biederman
Peter Stuge <[EMAIL PROTECTED]> writes: > On Wed, Feb 25, 2004 at 05:10:44PM -0800, YhLu wrote: > > Eric, > > > > I put the the dhcpcd in the initrd. After boot system with LinuxBIOS + > > Etherboot + elf ( with the initrd). I found the IP got by Etherboot and > > dhcpcd is different. > > > > I

答复: IP get via Etherboot and IP get dhcpcd

2004-02-25 Thread YhLu
Eric, When using nfsroot to put rootfs in NFS server, I need to set "root=/dev/nfs nfsroot= ip=bootp" to use mkelfImage to produce one. Elf for boot. Then If there is ip-mac pair in the dhcpd.conf. The kernel can not get the IP address from the DHCP server. The dhcp in busybox seems somethin