Changeset 72040 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Apr 26, 2018 2:01:18 PM (7 years ago)
- Location:
- trunk/src/VBox/Installer/win
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Makefile.kmk
r72020 r72040 1007 1007 Scripts/PackDriversForSubmission.cmd \ 1008 1008 Scripts/UnpackBlessedDrivers.cmd \ 1009 Scripts/RepackExtPack.cmd \ 1009 1010 $(RePackScripts_0_OUTDIR)/sign-dual.cmd \ 1010 1011 $(RePackScripts_0_OUTDIR)/sign-sha1.cmd \ -
trunk/src/VBox/Installer/win/Scripts/UnpackBlessedDrivers.cmd
r72019 r72040 24 24 rem Check for environment variables we need. 25 25 rem 26 if ".%KBUILD_DEVTOOLS%" == "." (echo KBUILD_ BIN_PATHis not set & goto end_failed)26 if ".%KBUILD_DEVTOOLS%" == "." (echo KBUILD_DEVTOOLS is not set & goto end_failed) 27 27 28 28 rem … … 102 102 rem figure defaults here: if ".%_MY_OPT_INPUT%" == "." if exist "%_MY_OPT_BINDIR%\x86" set _MY_OPT_INPUT=VBoxDrivers-amd64.cab 103 103 rem figure defaults here: if ".%_MY_OPT_INPUT%" == "." set _MY_OPT_INPUT=VBoxDrivers-x86.cab 104 if not exist "%_MY_OPT_INPUT%" goto error_input_ exists104 if not exist "%_MY_OPT_INPUT%" goto error_input_not_found 105 105 106 106 rem … … 112 112 rem Modify the catalog signatures. 113 113 rem 114 for % cat in (VBoxDrv.cat VBoxNetAdp6.cat VBoxNetLwf.cat VBoxUSB.cat VBoxUSBMon.cat) do (114 for %%cat in (VBoxDrv.cat VBoxNetAdp6.cat VBoxNetLwf.cat VBoxUSB.cat VBoxUSBMon.cat) do ( 115 115 copy /y "%_MY_OPT_BINDIR%\%cat%" "%_MY_OPT_BINDIR%\%cat%.ms" || goto end_failed 116 116 call sign-dual.cmd "%_MY_OPT_BINDIR%\%cat%" || goto end_failed
Note:
See TracChangeset
for help on using the changeset viewer.