On Sun, 2002-03-31 at 16:10, Hauke Busch wrote: > Hi, > > thank you for your response. I have read about the looping problem that this > could be caused by some IRQ/DMA problem. Here is the output from /rpoc:
8<snippage>8 > the problem with the bios is, that with this brand new HP notebook, one > cannot do any changes to the bios. The bios setup program lets one set the > date and booting device and that's it! > There must be a way around this, but I don't know how at the moment. > So I don't know whether there is the option PnP Bios installed. > Speaking of interrupts, how does one change those if not in the bios? I had the problem and just solved it, thanks to a user on comp.os.linux.portable. It turns out that this is an ACPI problem--all that's needed is a quick patch to the kernel source: You'll need to modify drivers/acpi/tables/tbconvrt.c in your kernel source tree. Here's my diff: --- tbconvrt.c.ori Sun Feb 10 17:50:23 2002 +++ tbconvrt.c Thu Apr 4 16:21:33 2002 @@ -211,7 +211,11 @@ /* The ACPI FADT revision number is FADT2_REVISION_ID=3 */ /* So, if the current table revision is less than 3 it is type 1.0 or 0.71 */ - if (acpi_gbl_FADT->header.revision >= FADT2_REVISION_ID) { + /* Per Bryan Mawhinney <bryanmSPAMawhinneyBLOCKED@hotmailcom>, we need to force + * this comparison to be false for the HP Pavilion zt1130 + * (affects sound as well...) + */ + if (0 && acpi_gbl_FADT->header.revision >= FADT2_REVISION_ID) { /* We have an ACPI 2.0 FADT but we must copy it to our local buffer */ *FADT2 = *((fadt_descriptor_rev2*) acpi_gbl_FADT); 8<end of diff>8 This was sufficient to get basic sound working correctly--even with a framebuffer console (although I haven't tried framebuffer X recently). Regards, Barthel -- [EMAIL PROTECTED] | http://geocities.com/ld_barthel Organization: The Pennswald Group -- Linux powered!! I thought I wanted a career--turns out I just wanted regular paychecks. _______________________________________________ Alsa-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/alsa-user