I´m novice, and i´m trying to follow the instructions of the Epia´s How to file. I can´t execute the config tool. My file is named "NLBConfig.py,v" , why is there the ",v" at the end of the file? is it normal? This is the the same for my config file. I renamed them as "NLBConfig.py" and "motherboard.config" but impossible to execute. I used "python .../NLBConfig.py ..../motherboard.config /.../" It gives me a mistake at the first line, so i don´t think this is this way it works.
-------------------------------------------------- Oreka ! Nous sommes l'internet moins cher ! Surfez 25% moins cher avec http://www.oreka.com
On Mon, Mar 31, 2003 at 08:15:08AM +0100, Philippe CABANNES wrote:
I?m novice, and i?m trying to follow the instructions of the Epia?s How to file. I can?t execute the config tool. My file is named "NLBConfig.py,v" , why is there the ",v" at the end of the file? is it normal?
(cut)
It gives me a mistake at the first line, so i don?t think this is this way it works.
The ,v means it is a versioned file, straight from CVS. You shouldn't have such files if you check the files out of CVS properly: these files only live inside the CVS repository (maybe you just "downloaded" them from the CVS repository without checking them out with the CVS tools ?).
Its also possible to strip the ,v file back to a normal file using the cvs tools, but I don't know it by hard unfortunately.
best regards, Vincent
I have linuxbios partly working on this GX1/CS5530 based mainboard.
I created a mainboard/fabiatech/fb2510 directory and copied the files from mainboard/advantech/pcm-5823.
In Config, I changed all references to FDC37B72x to FDC37B78x (By the way superio/SMC/FDC37B78x/superio.c reports itself as FDC37B72x). Everything else I left the same. I based the build config off config.example, changing the payload from eepro100.ebi to rtl8139.elf (there was no make target for bin/rtl8139.ebi in Etherboot 5.1.7).
I tried to run getpir on the FB2510 under the existing Award Bios, but it failed to find a valid PCI IRQ Routing table. I include the output below.
I went ahead and built linuxbios (using the irq_tables.c from pcm-5823) and programmed the FB2510's flash with the resulting romimage. Booting with this romimage was quite successful up until configuring the com port. Booting freezes right after this point.
------ begin of linuxbios serial console output ------- Call init Enabling com device: 04 iobase = 0x03f8 irq=4 ------ end of linuxbios serial console output -------
Actually originally it would only print "io" from the last line. Looking in superio.c I found that the comments said initialization should be happening before enabling, but in the code it was happening the other way around. Looking in FDC7B72x it was done in the init then enable order with a delay(1) between the init and enable. So I went ahead and made that change in FDC7B72x/superio.c. After that I got the above output.
I'm guessing this problem is because my irq routing table is not being properly configured. Is this a good guess? How else can I get the information to put in irq_table.c?
------ begin of getpir output ------- Opening memory... Found PCI IRQ Routing table signature at c0229d4c bytes from top of the memory Validating../ Version is:13429 Table size:33126 Invalid version Invalid table size (not a multiple of 16) Found PCI IRQ Routing table signature at c16744e0 bytes from top of the memory Validating../ Version is:13429 Table size:33126 Invalid version Invalid table size (not a multiple of 16) Found PCI IRQ Routing table signature at c1688bcc bytes from top of the memory Validating../ Version is:57116 Table size:16387 Invalid version Invalid table size (not a multiple of 16) Found PCI IRQ Routing table signature at c168a39c bytes from top of the memory Validating../ Version is:17863 Table size:476 Invalid version Invalid table size (not a multiple of 16) Found PCI IRQ Routing table signature at c1690e70 bytes from top of the memory Validating../ Version is:17863 Table size:476 Invalid version Invalid table size (not a multiple of 16) Found PCI IRQ Routing table signature at c1a62e3c bytes from top of the memory Validating../ Version is:17863 Table size:57552 Invalid version Closing memory No table for you... ------ end of getpir output -------
Joey Nelson