> > > System Information > > > Manufacturer: Hewlett-Packard > > > Product Name: > > > Version: Rev 1 > > > Serial Number: > > > UUID: Not Settable > > > Wake-up Type: Power Switch > > > SKU Number: > > > Family: 103C_5335KV > > > > > > Handle 0x0002, DMI type 2, 8 bytes > > > Base Board Information > > > Manufacturer: Quanta > > > Product Name: 30B8 > > > > Is this a production BIOS? > > It is unusual to have no "Product Name" above. > > What name is on the sticker on the box -- something > > from the Pavilion dv6000 family? > > > > Thanks for the dmidecode output. > > > > Do you notice any functional difference when booting with... > > > > "acpi_osi=Linux" (default for 2.6.22 and earlier) > > vs. > > "acpi_osi=!Linux" (default for 2.6.23 and later) > > > > ...in particular, please check sound, wifi, and hibernate. > > > > Also, please send me the output from acpidump. > > > > thanks, > > -Len > > > > ps > > If you don't have acpidump, you can get it from pmtools here: > > http://www.lesswatts.org/projects/acpi/utilities.php > > > On Saturday 19 January 2008 11:14, Dimitri Michaux wrote: > Hey, > > I had a hardware failure with this laptop and they had to replace the > motherboard, luckily HP didn't complain about me running Linux on the > laptop, but now dmidecode give's a different output (see attachment). > > > Is this a production BIOS? > > It is unusual to have no "Product Name" above. > > What name is on the sticker on the box -- something > > from the Pavilion dv6000 family? > It's a dv6276eu Heh, the new dmidecode says this: BIOS Information Vendor: Hewlett-Packard Version: F.3B Release Date: 10/02/2007 Address: 0xE6A30 Runtime Size: 103888 bytes ROM Size: 1024 kB ... Handle 0x0001, DMI type 1, 27 bytes System Information Manufacturer: Hewlett-Packard Product Name: HP Pqvilion dv6000 (RY606EQ#UUG) Version: Rev 1 Serial Number: CNF7092FC7 UUID: 434E4637-3039-3246-4337-001B24E59B82 Wake-up Type: Power Switch SKU Number: RY606EQ#UUG Family: 103C_5335KV Handle 0x0002, DMI type 2, 8 bytes Base Board Information Manufacturer: Quanta Product Name: 30B8 ----------- so it is still a Quanta 30B8 board. Humerous that they mis-spelled the product name -- but no matter -- it became clear very quickly that I can't key off the product names on HP boxes b/c they are semi-random strings. so I'm keying off of the board name (30B8). > When I need to boot with acpi_osi, do I still need to use > acpi_os_name="Windows 2006"? No, you should never have to use acpi_os_name= under any conditions. On this particular box, the BIOS doesn't check _OS contents anyway, so any setting you use would be a NOP. re: acpi_osi=Linux ... It is a NOP also, for in the code below, OSYS is over-written by the Windows values no matter if the Linux value is set or not. thanks, -Len Device (PCI0) { Name (_ADR, 0x00) Name (_HID, EisaId ("PNP0A03")) Name (_UID, 0x01) Method (_INI, 0, NotSerialized) { Store (0x07D0, OSYS) If (CondRefOf (_OSI, Local0)) { If (\_OSI ("Linux")) { Store (0x03E8, OSYS) } If (\_OSI ("Windows 2001")) { Store (0x07D1, OSYS) } If (\_OSI ("Windows 2001 SP1")) { Store (0x07D1, OSYS) } If (\_OSI ("Windows 2001 SP2")) { Store (0x07D2, OSYS) } If (\_OSI ("Windows 2006")) { Store (0x07D6, OSYS) } } } - To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html