Bug 401821 - anaconda doesn't probe for USB on buses other than PCI and PS3
Summary: anaconda doesn't probe for USB on buses other than PCI and PS3
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: anaconda
Version: rawhide
Hardware: All
OS: Linux
low
low
Target Milestone: ---
Assignee: Anaconda Maintenance Team
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2007-11-27 21:29 UTC by David Woodhouse
Modified: 2007-11-30 22:12 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2007-11-27 21:52:32 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description David Woodhouse 2007-11-27 21:29:22 UTC
Could do with it checking MACIO (which is actually BUS_OPENFIRMWARE) too. In
fact, why isn't it BUS_UNSPEC?

--- 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 | BUS_PS3 | BUS_MACIO, 0);
 
     if (!devices) {
         logMessage(DEBUGLVL, "no usb controller found");

Comment 1 Chris Lumens 2007-11-27 21:52:32 UTC
Because the patch you supplied in bug 236480 didn't do BUS_UNSPEC.  :)

Applied.

Comment 2 David Woodhouse 2007-11-27 21:55:11 UTC
Then, as now, I didn't know if there was actually a reason to avoid some bus types.

Thanks.


Note You need to log in before you can comment on or make changes to this bug.