Changeset 42280 in vbox for trunk/src/VBox/Additions/WINNT/Installer
- Timestamp:
- Jul 20, 2012 3:26:51 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79336
- Location:
- trunk/src/VBox/Additions/WINNT/Installer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/Makefile.kmk
r42239 r42280 135 135 $(PATH_STAGE_BIN)/additions/VBoxVideoWddm.inf \ 136 136 $(PATH_STAGE_BIN)/additions/VBoxDispD3D.dll 137 ifdef VBOX_W DDM_WIN8137 ifdef VBOX_WITH_WDDM_W8 138 138 DRIVER_FILES += \ 139 139 $(PATH_STAGE_BIN)/additions/VBoxVideoW8.sys \ … … 148 148 DRIVER_FILES += \ 149 149 $(PATH_STAGE_BIN)/additions/VBoxVideoWddm.cat 150 ifdef VBOX_W DDM_WIN8150 ifdef VBOX_WITH_WDDM_W8 151 151 DRIVER_FILES += \ 152 152 $(PATH_STAGE_BIN)/additions/VBoxVideoW8.cat … … 193 193 -E 'VBOX_WITH_LICENSE_INSTALL_RTF=$(if $(VBOX_BRAND_LICENSE_RTF),1,0)' \ 194 194 -E 'VBOX_WITH_WDDM=$(if $(VBOX_WITH_WDDM),1,0)' \ 195 -E 'VBOX_W DDM_WIN8=$(if $(VBOX_WDDM_WIN8),1,0)' \195 -E 'VBOX_WITH_WDDM_W8=$(if $(VBOX_WITH_WDDM_W8),1,0)' \ 196 196 -E 'VBOX_BRAND_WIN_ADD_INST_DLGBMP=$(subst /,\,$(VBOX_BRAND_WIN_ADD_INST_DLGBMP))' \ 197 197 -E 'VBOX_BRAND_LICENSE_RTF=$(subst /,\,$(VBOX_BRAND_LICENSE_RTF))' \ -
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsCommon.nsh
r42142 r42280 138 138 !endif ; $%BUILD_TARGET_ARCH% == "amd64" 139 139 140 !if $%VBOX_W DDM_WIN8% == "1"140 !if $%VBOX_WITH_WDDM_W8% == "1" 141 141 ; WDDM Video driver for Win8 142 142 SetOutPath "$0\VBoxVideoW8" … … 178 178 !endif ; $%VBOX_WITH_CROGL% == "1" 179 179 !endif ; $%BUILD_TARGET_ARCH% == "amd64" 180 !endif ; $%VBOX_W DDM_WIN8% == "1"180 !endif ; $%VBOX_WITH_WDDM_W8% == "1" 181 181 !endif ; $%VBOX_WITH_WDDM% == "1" 182 182 -
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsW2KXP.nsh
r42142 r42280 210 210 SetOutPath "$INSTDIR" 211 211 212 !if $%VBOX_W DDM_WIN8% == "1"212 !if $%VBOX_WITH_WDDM_W8% == "1" 213 213 ${If} $g_strWinVersion == "8" 214 214 !ifdef VBOX_SIGN_ADDITIONS … … 224 224 FILE "$%PATH_OUT%\bin\additions\VBoxVideoWddm.sys" 225 225 FILE "$%PATH_OUT%\bin\additions\VBoxVideoWddm.inf" 226 !if $%VBOX_W DDM_WIN8% == "1"226 !if $%VBOX_WITH_WDDM_W8% == "1" 227 227 ${EndIf} 228 228 !endif … … 373 373 ${If} $g_bNoVideoDrv == "false" 374 374 ${If} $g_bWithWDDM == "true" 375 !if $%VBOX_W DDM_WIN8% == "1"375 !if $%VBOX_WITH_WDDM_W8% == "1" 376 376 ${If} $g_strWinVersion == "8" 377 377 DetailPrint "Installing WDDM video driver for Windows 8..." … … 381 381 DetailPrint "Installing WDDM video driver for Windows Vista and 7..." 382 382 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" driver install "$INSTDIR\VBoxVideoWddm.inf" "$INSTDIR\install_drivers.log"' 383 !if $%VBOX_W DDM_WIN8% == "1"383 !if $%VBOX_WITH_WDDM_W8% == "1" 384 384 ${EndIf} 385 385 !endif … … 529 529 Delete /REBOOTOK "$%PATH_OUT%\bin\additions\VBoxVideoWddm.sys" 530 530 Delete /REBOOTOK "$%PATH_OUT%\bin\additions\VBoxVideoWddm.inf" 531 !if $%VBOX_W DDM_WIN8% == "1"531 !if $%VBOX_WITH_WDDM_W8% == "1" 532 532 Delete /REBOOTOK "$%PATH_OUT%\bin\additions\VBoxVideoW8.cat" 533 533 Delete /REBOOTOK "$%PATH_OUT%\bin\additions\VBoxVideoW8.sys" … … 596 596 !if $%VBOX_WITH_WDDM% == "1" 597 597 598 !if $%VBOX_W DDM_WIN8% == "1"598 !if $%VBOX_WITH_WDDM_W8% == "1" 599 599 DetailPrint "Uninstalling WDDM video driver for Windows 8..." 600 600 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" driver uninstall "$INSTDIR\VBoxVideoW8.inf"' … … 606 606 ; could be done with "VBoxDrvInst.exe /u", e.g. by passing additional arg to it denoting that driver package is to be uninstalled 607 607 Delete /REBOOTOK "$g_strSystemDir\drivers\VBoxVideoW8.sys" 608 !endif ; $%VBOX_W DDM_WIN8% == "1"608 !endif ; $%VBOX_WITH_WDDM_W8% == "1" 609 609 610 610 DetailPrint "Uninstalling WDDM video driver for Windows Vista and 7..."
Note:
See TracChangeset
for help on using the changeset viewer.