See patch.
Btw, do we need to (or want to) enable the "SMI" PCI device? I guess not as we don't use the VSA(?) Do we need it for the VSA-less audio driver?
Btw, Juergen, can you please attach a license to your photos in the wiki? GPL or CC or public domain, whatever. There are templates such as {{GPL}} or {{PD-self}} etc.
This patch should also fix the broken abuild-run on this board...
Thanks, Uwe.
Hi Uwe,
On Sunday 14 October 2007 19:10, Uwe Hermann wrote:
Btw, do we need to (or want to) enable the "SMI" PCI device? I guess not as we don't use the VSA(?) Do we need it for the VSA-less audio driver?
For VSA-less audio it would be required. But maybe the audio itself is not required...
Btw, Juergen, can you please attach a license to your photos in the wiki? GPL or CC or public domain, whatever. There are templates such as {{GPL}} or {{PD-self}} etc.
Yes, I will.
Juergen
How about ACPI? Though it's too early to worry about ACPI it needs SMI.
-kenji
2007/10/20, Juergen Beisert juergen127@kreuzholzen.de:
Hi Uwe,
On Sunday 14 October 2007 19:10, Uwe Hermann wrote:
Btw, do we need to (or want to) enable the "SMI" PCI device? I guess not as we don't use the VSA(?) Do we need it for the VSA-less audio driver?
For VSA-less audio it would be required. But maybe the audio itself is not required...
Btw, Juergen, can you please attach a license to your photos in the wiki? GPL or CC or public domain, whatever. There are templates such as {{GPL}} or {{PD-self}} etc.
Yes, I will.
Juergen
-- linuxbios mailing list linuxbios@linuxbios.org http://www.linuxbios.org/mailman/listinfo/linuxbios
Uwe,
On Sunday 14 October 2007 19:10, Uwe Hermann wrote:
See patch.
Btw, do we need to (or want to) enable the "SMI" PCI device? I guess not as we don't use the VSA(?) Do we need it for the VSA-less audio driver?
Btw, Juergen, can you please attach a license to your photos in the wiki? GPL or CC or public domain, whatever. There are templates such as {{GPL}} or {{PD-self}} etc.
How does it work? The download accepts the license only for new pictures. I added new comments, but only the comment of the first picture revision will be used (or at least it seems so).
Juergen
On Sun, Oct 21, 2007 at 01:39:00PM +0200, Juergen Beisert wrote:
Btw, Juergen, can you please attach a license to your photos in the wiki? GPL or CC or public domain, whatever. There are templates such as {{GPL}} or {{PD-self}} etc.
How does it work? The download accepts the license only for new pictures. I added new comments, but only the comment of the first picture revision will be used (or at least it seems so).
Hm, not sure what the problem is. There's no need to re-upload, just edit the image page and add the comments there, e.g.
http://linuxbios.org/index.php?title=Image%3AIgel_winnet100_3.jpg&diff=5...
HTH, Uwe.
Uwe,
On Monday 22 October 2007 23:05, Uwe Hermann wrote:
On Sun, Oct 21, 2007 at 01:39:00PM +0200, Juergen Beisert wrote:
Btw, Juergen, can you please attach a license to your photos in the wiki? GPL or CC or public domain, whatever. There are templates such as {{GPL}} or {{PD-self}} etc.
How does it work? The download accepts the license only for new pictures. I added new comments, but only the comment of the first picture revision will be used (or at least it seems so).
Hm, not sure what the problem is. There's no need to re-upload, just edit the image page and add the comments there, e.g.
http://linuxbios.org/index.php?title=Image%3AIgel_winnet100_3.jpg&diff=5... &oldid=5175
Ah, that is the way hwo to do it! PEBKAB <- me ;-)
Juergen
* Uwe Hermann uwe@hermann-uwe.de [071014 19:10]:
See patch.
This patch should also fix the broken abuild-run on this board...
Thanks, Uwe.
Some fixes for the BCOM WinNET100, mostly in Config.lb:
Add missing entry for the NIC:
device pci 0f.0 on end # Ethernet (onboard)
Drop the following lines:
register "com1" = "{115200}" register "com2" = "{38400}"
Those entries hardcode the BAUD rate (as far as I can tell, please correct me if I'm wrong). We don't want that -- instead the config option TTYS0_BAUD in Options.lb should be used(?) I verified that dropping those lines will not break serial output (COM1, 115200, 8n1).
Enable IDE (PCI device 00:12.2) and add the following register lines to tell the CS5530 code to actually enable IDE channel 0:
register "ide0_enable" = "1" register "ide1_enable" = "0" # Not available/needed on this board
Tested with a 2.5" hard drive and FILO, works fine.
Enable USB (PCI device 00:13.0), not sure why it was commented.
Enable COM2 as it's used by the smartcard reader.
Add CONFIG_COMPRESSED_PAYLOAD_LZMA to Options.lb, in order to fix abuild for this board.
Add some more comments.
Signed-off-by: Uwe Hermann uwe@hermann-uwe.de
Acked-by: Stefan Reinauer stepan@coresystems.de
On Tue, Oct 23, 2007 at 02:02:14PM +0200, Stefan Reinauer wrote:
- Uwe Hermann uwe@hermann-uwe.de [071014 19:10]:
See patch.
This patch should also fix the broken abuild-run on this board...
Thanks, Uwe.
Some fixes for the BCOM WinNET100, mostly in Config.lb:
Add missing entry for the NIC:
device pci 0f.0 on end # Ethernet (onboard)
Drop the following lines:
register "com1" = "{115200}" register "com2" = "{38400}"
Those entries hardcode the BAUD rate (as far as I can tell, please correct me if I'm wrong). We don't want that -- instead the config option TTYS0_BAUD in Options.lb should be used(?) I verified that dropping those lines will not break serial output (COM1, 115200, 8n1).
Enable IDE (PCI device 00:12.2) and add the following register lines to tell the CS5530 code to actually enable IDE channel 0:
register "ide0_enable" = "1" register "ide1_enable" = "0" # Not available/needed on this board
Tested with a 2.5" hard drive and FILO, works fine.
Enable USB (PCI device 00:13.0), not sure why it was commented.
Enable COM2 as it's used by the smartcard reader.
Add CONFIG_COMPRESSED_PAYLOAD_LZMA to Options.lb, in order to fix abuild for this board.
Add some more comments.
Signed-off-by: Uwe Hermann uwe@hermann-uwe.de
Acked-by: Stefan Reinauer stepan@coresystems.de
Thanks, r2896.
Uwe.