Changeset 58264 in vbox for trunk/src/VBox/HostDrivers/linux
- Timestamp:
- Oct 15, 2015 2:10:22 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103453
- Location:
- trunk/src/VBox/HostDrivers/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/linux/load.sh
r58263 r58264 29 29 exit 1 30 30 fi 31 test ${#} -eq 0 || 32 if ! test ${#} -eq 1 || ! test "x${1}" = x-u; then 33 echo "Usage: load.sh [-u]" 34 exit 1 35 fi 36 sudo "${MY_DIR}/vboxdrv.sh" stop 37 test ${#} -eq 0 || exit 0 31 38 make -C "${MY_DIR}/src/vboxdrv" "$@" 32 sudo "${MY_DIR}/vboxdrv.sh" stop33 39 echo "Installing SUPDrv (aka VBoxDrv/vboxdrv)" 34 40 sudo /sbin/insmod "${MY_DIR}/src/vboxdrv/vboxdrv.ko" -
trunk/src/VBox/HostDrivers/linux/loadall.sh
r58263 r58264 25 25 if test ${#} -eq 0; then 26 26 sudo "${MY_DIR}/vboxdrv.sh" setup 27 elif test $ * = 1 && test "${1}" =-u; then27 elif test ${#} = 1 && test "x${1}" = x-u; then 28 28 sudo "${MY_DIR}/vboxdrv.sh" cleanup 29 29 else
Note:
See TracChangeset
for help on using the changeset viewer.