- Timestamp:
- Aug 8, 2011 6:45:19 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/VBoxCreateUSBNode.sh
r38093 r38362 19 19 20 20 # Constant, from the USB specifications 21 usb_class_hub= 921 usb_class_hub=09 22 22 23 23 do_remove=0 … … 33 33 case "$do_remove" in 34 34 0) 35 case "$class" in "$usb_class_hub") exit 0;; esac 35 if test -n "$class" -a "$class" -eq "$usb_class_hub" 36 then 37 exit 0 38 fi 36 39 case "$group" in "") group="vboxusers";; esac 37 40 mkdir /dev/vboxusb -m 0750 2>/dev/null
Note:
See TracChangeset
for help on using the changeset viewer.