Changeset 41841 in vbox
- Timestamp:
- Jun 20, 2012 7:34:27 AM (13 years ago)
- Location:
- trunk/src/VBox/HostDrivers/win
- Files:
-
- 1 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/win/Makefile.kmk
r41477 r41841 30 30 HostDrivers-scripts_EXEC_SOURCES = \ 31 31 loadall.sh \ 32 loadall.cmd 32 loadall.cmd \ 33 load.sh \ 34 load.cmd 33 35 34 36 # generate rules -
trunk/src/VBox/HostDrivers/win/load.cmd
r41840 r41841 2 2 rem $Id$ 3 3 rem rem @file 4 rem Windows NT batch script for launching load all.sh4 rem Windows NT batch script for launching load.sh 5 5 rem 6 6 … … 24 24 rem loadall.sh should be in the same directory as this script. 25 25 rem 26 set MY_SCRIPT=%~dp0load all.sh26 set MY_SCRIPT=%~dp0load.sh 27 27 if exist "%MY_SCRIPT%" goto found 28 echo load all.cmd: failed to find loadall.sh in "%~dp0".28 echo load.cmd: failed to find load.sh in "%~dp0". 29 29 goto end 30 30 -
trunk/src/VBox/HostDrivers/win/load.sh
r41840 r41841 60 60 61 61 # 62 # Invoke the installer s.62 # Invoke the installer. 63 63 # 64 for inst in SUPInstall.exe USBInstall.exe NetFltInstall.exe NetAdpInstall.exe;64 for inst in SUPInstall.exe; 65 65 do 66 66 if test -f ${MY_DIR}/$inst; then … … 69 69 done 70 70 71 echo "load.sh: Successfully installed all drivers"71 echo "load.sh: Successfully installed SUPDrv (aka VBoxDrv)" 72 72 exit 0 73 73
Note:
See TracChangeset
for help on using the changeset viewer.