diff options
author | Chris Lumens <clumens@redhat.com> | 2007-04-17 21:34:54 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-04-17 21:34:54 +0000 |
commit | 5e5512f4b8dd45b11b1c2790565a98f9c08a5ec5 (patch) | |
tree | 6c2af46adf851df904da1babf9a534d85f1eb875 | |
parent | fc4aa5170853e71bd0006268ad8b47a6d6d49846 (diff) | |
download | anaconda-5e5512f4b8dd45b11b1c2790565a98f9c08a5ec5.tar.gz anaconda-5e5512f4b8dd45b11b1c2790565a98f9c08a5ec5.tar.xz anaconda-5e5512f4b8dd45b11b1c2790565a98f9c08a5ec5.zip |
Back out PS3 patch for now since support's not yet present in kudzu.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | loader2/hardware.c | 2 | ||||
-rw-r--r-- | loader2/usb.c | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -40,6 +40,10 @@ message when devices are mentioned by name instead of by label and we can't mount them. + * loader2/usb.c (usbInitialize): Back out PS3 patch for now since + support's not yet present in kudzu. + * loader2/hardware.c (detectHardware): Likewise. + 2007-04-17 Paul Nasrat <pnasrat@redhat.com> * isys/isys.py: Ignore ps3 flash (#236481) diff --git a/loader2/hardware.c b/loader2/hardware.c index b22d124b1..c134f8873 100644 --- a/loader2/hardware.c +++ b/loader2/hardware.c @@ -68,7 +68,7 @@ static int detectHardware(moduleInfoSet modInfo, char *** modules) { devices = probeDevices(CLASS_UNSPEC, BUS_PCI | BUS_SBUS | BUS_VIO | BUS_MACIO | - BUS_PCMCIA | BUS_XEN | BUS_PS3, + BUS_PCMCIA | BUS_XEN, PROBE_ALL); logMessage(DEBUGLVL, "finished bus probing"); diff --git a/loader2/usb.c b/loader2/usb.c index a0f3cb0e2..bf2fb7308 100644 --- a/loader2/usb.c +++ b/loader2/usb.c @@ -73,7 +73,7 @@ int usbInitialize(moduleList modLoaded, moduleDeps modDeps, logMessage(INFO, "looking for usb controllers"); - devices = probeDevices(CLASS_USB, BUS_PCI | BUS_PS3, 0); + devices = probeDevices(CLASS_USB, BUS_PCI, 0); if (!devices) { logMessage(DEBUGLVL, "no usb controller found"); |