Re: [LinuxBIOS] r2536 - trunk/LinuxBIOSv2/util/probe_superio

2007-01-17 Thread bxshi
+probe_idregs_fintek(unsigned short port){ + unsigned int vid, did; + + // Enable configuration sequence (Fintek uses this for example) + outb(0x87, port); + outb(0x87, port); Winbond superios also need to do this way ,so I think change probe_idregs_fintek to another name will be more convient.

[LinuxBIOS] [PATCH] VGA is used before it is initialized

2007-01-17 Thread Roman Kononov
In the original code vga_inited is set, then run_bios() is called, which does printk(), which is allowed using the VGA. The patch puts vga_inited=1 and run_bios() in the right order. Roman -- Index: src/devices/pci_rom.c ===

Re: [LinuxBIOS] patch, add support for ST M50FW080

2007-01-17 Thread ron minnich
On 1/17/07, Uwe Hermann <[EMAIL PROTECTED]> wrote: > Hi, > > On Wed, Jan 10, 2007 at 02:27:10AM +0100, Stefan Reinauer wrote: > > * ron minnich <[EMAIL PROTECTED]> [070110 01:14]: > > > I keep forgetting this procedure. I hope this is ok. > > > Add support for ST M50FW080 (1 MBYTE firmware hub). >

Re: [LinuxBIOS] patch, add support for ST M50FW080

2007-01-17 Thread Uwe Hermann
Hi, On Wed, Jan 10, 2007 at 02:27:10AM +0100, Stefan Reinauer wrote: > * ron minnich <[EMAIL PROTECTED]> [070110 01:14]: > > I keep forgetting this procedure. I hope this is ok. > > Add support for ST M50FW080 (1 MBYTE firmware hub). > > Note that it seems to work, but does not program; this is pr

Re: [LinuxBIOS] r2536 - trunk/LinuxBIOSv2/util/probe_superio

2007-01-17 Thread Uwe Hermann
Hi, On Wed, Jan 17, 2007 at 11:15:31AM +, [EMAIL PROTECTED] wrote: > trivial enhancement > * add license header > * add clean target in makefile These are trivial... > * add fintek superio support ...but this is not IMHO. From looking at the code it's a lot more stuff than just adding some

Re: [LinuxBIOS] MSI MS9638 with linuxbios possible??

2007-01-17 Thread ron minnich
I think you should get Intel to agree to work with you on this. If they will not agree, however, it may not be a good plan to try to get it working. ron -- linuxbios mailing list linuxbios@linuxbios.org http://www.openbios.org/mailman/listinfo/linuxbios

[LinuxBIOS] r2536 - trunk/LinuxBIOSv2/util/probe_superio

2007-01-17 Thread svn
Author: stepan Date: 2007-01-17 11:57:42 +0100 (Wed, 17 Jan 2007) New Revision: 2536 Modified: trunk/LinuxBIOSv2/util/probe_superio/Makefile trunk/LinuxBIOSv2/util/probe_superio/probe_superio.c Log: trivial enhancement * add fintek superio support * add license header * add clean target in m