Last change
on this file was 1787, checked in by Bruno Cornec, 18 years ago |
Load USB earlier in order to support KBD such as with iLO
|
-
Property svn:executable
set to
*
|
File size:
680 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # $Id$
|
---|
4 | #
|
---|
5 | # This script sets up the USB media
|
---|
6 | #
|
---|
7 |
|
---|
8 | # Get info from config file
|
---|
9 | usbdev=`grep usb-dev /tmp/mondo-restore.cfg | cut -d' ' -f2-`
|
---|
10 |
|
---|
11 | # info from cmdline are predominent
|
---|
12 | for i in `cat /proc/cmdline` ; do
|
---|
13 | echo $i | grep -qi usb= && usbdev=`echo $i | cut -d= -f2`
|
---|
14 | done
|
---|
15 |
|
---|
16 | if [ $usbdev = "" ]; then
|
---|
17 | # No usb configuration neither stored during archive
|
---|
18 | # nor on cmdline so no usb wanted => exiting
|
---|
19 | exit 0
|
---|
20 | fi
|
---|
21 |
|
---|
22 | echo -en "Mounting USB device (${usbdev}1) on /mnt/cdrom..."
|
---|
23 | /sbin/modprobe usb-storage
|
---|
24 | for i in 1 2 3 4 5 6 7 8 9 10 ; do
|
---|
25 | sleep 1
|
---|
26 | echo -en "."
|
---|
27 | done
|
---|
28 | mount -t vfat ${usbdev}1 /mnt/cdrom && LogIt "USB device (${usbdev}1) mounted on /mnt/cdrom"
|
---|
29 | echo "."
|
---|
Note:
See
TracBrowser
for help on using the repository browser.