From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007 Firebird/0.7 Description of problem: System: Compaq/HP DL360 Dual PIII 800mhz 4gigs of ram Compaq hardware raid (cpqarray) With the remote insight card installed, FC2's installer detects and tries to load the megaraid driver making the system lockup/hang requiring a power cycle. The 'workaaround' is to boot with noprobe and select the modules by hand but this is bad because it breaks kickstart and upgrades. Version-Release number of selected component (if applicable): FC2 How reproducible: Always Steps to Reproduce: 1. Boot FC2 install CD Additional info:
Can you attach an lspci -vxx
Created attachment 100442 [details] lspci -vxx output as requested. Here ya go.
Something like this should fix it --- drivers/scsi/megaraid.c~ 2004-05-22 16:34:01.976198176 +0100 +++ drivers/scsi/megaraid.c 2004-05-22 16:36:02.088938264 +0100 @@ -4609,6 +4609,20 @@ pci_bus = pdev->bus->number; pci_dev_func = pdev->devfn; + + if(pdev->vendor == PCI_VENDOR_ID_INTEL) /* The megaraid3 stuff reports the id of the intel + part which is not remotely specific to the megaraid */ + { + /* Don't fall over the Compaq management cards using the same PCI identifier */ + if(pdev->subsystem_vendor == PCI_VENDOR_ID_COMPAQ && + pdev->subsystem_id == 0xC000) + return -ENODEV; + /* Now check the magic signature byte */ + pci_read_config_word(pdev, PCI_CONF_AMISIG, &magic); + if(magic != HBA_SIGNATURE_471 && magic != HBA_SIGNATURE) + return -ENODEV; + /* Ok it is probably a megaraid */ + } /* * For these vendor and device ids, signature offsets are not
Posted a final version of that to linux-kernel and the maintainer
Alan, I am expereincing this same issue, do I need to create a new iso with the updated kernel? Thanks. Mike
If you can remove the compaq card you should be able to install, upgrade to the kernel errata and then reinstall the card. That is probably the easiest approach.
fixed in FC3, (and soon FC2 update). Alan, this seems to still not be upstream as of 2.6.9 (havent checked 2.6.10rc)