summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-12-01 22:23:43 +0000
committerJeremy Katz <katzj@redhat.com>2003-12-01 22:23:43 +0000
commitaaa359c679693ca58fcde162529f65e15f97ca5e (patch)
tree1c3f391169710b1b25d8252a3409ab5c2afaa48b /packages.py
parentc348a3fbe61816d788fa60efd0ba59ad8b8519d1 (diff)
downloadanaconda-aaa359c679693ca58fcde162529f65e15f97ca5e.tar.gz
anaconda-aaa359c679693ca58fcde162529f65e15f97ca5e.tar.xz
anaconda-aaa359c679693ca58fcde162529f65e15f97ca5e.zip
usbfs and not usbdevfs now
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages.py b/packages.py
index e1aa65234..28bb9ad29 100644
--- a/packages.py
+++ b/packages.py
@@ -1073,7 +1073,7 @@ def doPostInstall(method, id, intf, instPath):
unmountUSB = 0
try:
- isys.mount('/usbdevfs', instPath+'/proc/bus/usb', 'usbdevfs')
+ isys.mount('/usbfs', instPath+'/proc/bus/usb', 'usbfs')
unmountUSB = 1
except:
log("Mount of /proc/bus/usb in chroot failed")
@@ -1109,7 +1109,7 @@ def doPostInstall(method, id, intf, instPath):
usbWasMounted = 0
if usbWasMounted:
- isys.mount('/usbdevfs', '/proc/bus/usb', 'usbdevfs')
+ isys.mount('/usbfs', '/proc/bus/usb', 'usbfs')
w.set(4)