diff options
author | Bill Nottingham <notting@redhat.com> | 2004-09-01 15:53:07 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-09-01 15:53:07 +0000 |
commit | ab1ebd6e9696f46dbc7d13bfc58dbea7648b7d30 (patch) | |
tree | 13522133854b2e645d581807766b270f960f39d1 /rc.d | |
parent | a421bec5394f3991bc917060fc7a7a6bc0804860 (diff) | |
download | initscripts-ab1ebd6e9696f46dbc7d13bfc58dbea7648b7d30.tar initscripts-ab1ebd6e9696f46dbc7d13bfc58dbea7648b7d30.tar.gz initscripts-ab1ebd6e9696f46dbc7d13bfc58dbea7648b7d30.tar.bz2 initscripts-ab1ebd6e9696f46dbc7d13bfc58dbea7648b7d30.tar.xz initscripts-ab1ebd6e9696f46dbc7d13bfc58dbea7648b7d30.zip |
mount usbfs (#131347)
start any automatic raid devices
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/rc.sysinit | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index cc6eb0c1..48da3463 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -24,6 +24,7 @@ fi # Mount /proc and /sys (done here so volume labels can work with fsck) mount -n -t proc /proc /proc +mount -n -t usbfs /proc/bus/usb /proc/bus/usb mount -n -t sysfs /sys /sys >/dev/null 2>&1 . /etc/init.d/functions @@ -212,6 +213,8 @@ echo -n $" done" success echo +echo "raidautorun /dev/md0" | nash --quiet + # Start the graphical boot, if necessary; /usr may not be mounted yet, so we # may have to do this again after mounting RHGB_STARTED=0 |