Changeset 53184 in vbox for trunk/src/VBox/HostDrivers/win/loadall.sh
- Timestamp:
- Nov 3, 2014 1:02:45 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/win/loadall.sh
r48952 r53184 1 1 #!/bin/bash 2 2 ## @file 3 # For development, builds andloads all the host drivers.3 # For development, loads all the host drivers. 4 4 # 5 5 6 6 # 7 # Copyright (C) 2010-201 2Oracle Corporation7 # Copyright (C) 2010-2014 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 15 15 # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 # 17 18 if test -n "$Path" -a test -z "$PATH"; then 19 export PATH="$Path" 20 fi 17 21 18 22 MY_DIR=`cd "${0}/.." && cmd /c cd | kmk_sed -e 's,\\\\,/,g' ` … … 62 66 # Invoke the installers. 63 67 # 64 for inst in SUPInstall.exe USBInstall.exe NetFltInstall.exe ; #NetAdpInstall.exe; - busted 65 do 66 if test -f ${MY_DIR}/$inst; then 67 ${MY_DIR}/$inst 68 fi 69 done 68 if "$1" != "-u" -a "$1" != "--uninstall"; then 69 for inst in SUPInstall.exe USBInstall.exe NetFltInstall.exe ; #NetAdpInstall.exe; - busted 70 do 71 if test -f ${MY_DIR}/$inst; then 72 ${MY_DIR}/$inst 73 fi 74 done 75 fi 70 76 71 77 echo "load.sh: Successfully installed all drivers"
Note:
See TracChangeset
for help on using the changeset viewer.