Changeset 96691 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Sep 11, 2022 10:17:35 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 153574
- Location:
- trunk/src/VBox/Additions/WINNT
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/Makefile.kmk
r96407 r96691 95 95 VBoxDisp_VBOX_IMPORT_CHECKER.win.amd64 = xp64/r0 96 96 97 # Signing requires both miniport and display drivers 98 # so it'd be dealt with in the parent makefile. 99 ifdef VBOX_SIGN_ADDITIONS 100 VBoxDisp_INSTTYPE = none 101 VBoxDisp_DEBUG_INSTTYPE = both 97 # Signing requires both miniport and display drivers so it'll be dealt with in the parent makefile. 98 if defined(VBOX_SIGNING_MODE) && defined(VBOX_SIGN_ADDITIONS) 99 VBoxDisp_INSTTYPE := none 100 VBoxDisp_DEBUG_INSTTYPE := both 102 101 ifdef VBOX_WITH_WDDM 103 VBoxDispD3D_INSTTYPE = none104 VBoxDispD3D_DEBUG_INSTTYPE = both102 VBoxDispD3D_INSTTYPE := none 103 VBoxDispD3D_DEBUG_INSTTYPE := both 105 104 ifdef VBOX_WITH_WDDM_DX 106 VBoxDX_INSTTYPE = none107 VBoxDX_DEBUG_INSTTYPE = both105 VBoxDX_INSTTYPE := none 106 VBoxDX_DEBUG_INSTTYPE := both 108 107 endif 109 108 endif -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/Makefile.kmk
r96407 r96691 184 184 185 185 # 186 # Signing requires both miniport and display drivers 187 # so it'd be dealt with in the parent makefile. 186 # Signing requires both miniport and display drivers so it'll be dealt with in the parent makefile. 188 187 # 189 if def VBOX_SIGN_ADDITIONS188 if defined(VBOX_SIGNING_MODE) && defined(VBOX_SIGN_ADDITIONS) 190 189 VBoxVideo_INSTTYPE = none 191 190 VBoxVideo_DEBUG_INSTTYPE = both … … 194 193 VBoxWddm_DEBUG_INSTTYPE = both 195 194 endif 196 endif # VBOX_SIGN_ADDITIONS195 endif 197 196 198 197 include $(FILE_KBUILD_SUB_FOOTER) -
trunk/src/VBox/Additions/WINNT/Installer/Makefile.kmk
r96689 r96691 114 114 endif 115 115 116 VBOX_WINDOWS_ADDITIONS_OTHER_FILES := \ 117 $(PATH_STAGE_BIN)/additions/VBoxService.exe \ 118 $(PATH_STAGE_BIN)/additions/RegCleanup.exe 119 120 ifdef VBOX_SIGN_ADDITIONS 116 if defined(VBOX_SIGNING_MODE) && defined(VBOX_SIGN_ADDITIONS) 121 117 VBOX_WINDOWS_ADDITIONS_OTHER_FILES += \ 122 118 $(PATH_STAGE_BIN)/additions/VBoxVideo.cat \ … … 128 124 endif 129 125 126 VBOX_WINDOWS_ADDITIONS_OTHER_FILES := \ 127 $(PATH_STAGE_BIN)/additions/VBoxService.exe \ 128 $(PATH_STAGE_BIN)/additions/VBoxHook.dll \ 129 $(PATH_STAGE_BIN)/additions/RegCleanup.exe 130 130 131 ifeq ($(KBUILD_TARGET_ARCH),x86) 131 132 VBOX_WINDOWS_ADDITIONS_OTHER_FILES += \ … … 133 134 $(PATH_STAGE_BIN)/additions/VBoxSFW2K.sys 134 135 endif 135 ifdef VBOX_SIGN_ADDITIONS 136 VBOX_WINDOWS_ADDITIONS_OTHER_FILES += \ 137 $(PATH_STAGE_BIN)/additions/VBoxVideo.cat \ 138 $(PATH_STAGE_BIN)/additions/VBoxVideo-PreW10.cat \ 139 $(PATH_STAGE_BIN)/additions/VBoxGuest.cat \ 140 $(PATH_STAGE_BIN)/additions/VBoxGuest-PreW10.cat \ 141 $(PATH_STAGE_BIN)/additions/VBoxMouse.cat \ 142 $(PATH_STAGE_BIN)/additions/VBoxMouse-PreW10.cat 143 endif 136 144 137 ifdef VBOX_WITH_WDDM 145 138 VBOX_WINDOWS_ADDITIONS_ATTESTATION_SIGNED_FILES += \ … … 174 167 endif 175 168 176 if def VBOX_SIGN_ADDITIONS169 if defined(VBOX_SIGNING_MODE) && defined(VBOX_SIGN_ADDITIONS) 177 170 VBOX_WINDOWS_ADDITIONS_OTHER_FILES += \ 178 171 $(PATH_STAGE_BIN)/additions/VBoxWddm.cat \ 179 172 $(PATH_STAGE_BIN)/additions/VBoxWddm-PreW10.cat 180 173 endif 181 endif 174 endif # VBOX_WITH_WDDM 182 175 183 176 ifdef env.VBOX_WITH_ADDITIONS_SHIPPING_AUDIO_TEST … … 297 290 298 291 299 if def VBOX_GA_ATTESTATION_SIGNING292 if defined(VBOX_GA_ATTESTATION_SIGNING) && defined(VBOX_SIGNING_MODE) && defined(VBOX_SIGN_ADDITIONS) 300 293 # 301 294 # This automagically attestation signs the GA drivers. … … 321 314 -x -n --no-main --ga -o $(PATH_OUT)/repackadd/$(VBOX_DRIVERS_PACK_NAME) 322 315 $(call VBOX_SIGN_EV_FILE_FN,$@) 323 endif # VBOX_GA_ATTESTATION_SIGNING 316 endif # VBOX_GA_ATTESTATION_SIGNING && VBOX_SIGNING_MODE && VBOX_SIGN_ADDITIONS 324 317 325 318 -
trunk/src/VBox/Additions/WINNT/VBoxTray/Makefile.kmk
r96407 r96691 31 31 PROGRAMS += VBoxTray 32 32 VBoxTray_TEMPLATE = VBoxGuestR3Exe 33 if def VBOX_SIGN_ADDITIONS# (See the parent makefile.)34 VBoxTray_INSTTYPE = none35 VBoxTray_DEBUG_INSTTYPE = both33 if defined(VBOX_SIGNING_MODE) && defined(VBOX_SIGN_ADDITIONS) # (See the parent makefile.) 34 VBoxTray_INSTTYPE := none 35 VBoxTray_DEBUG_INSTTYPE := both 36 36 endif 37 37 VBoxTray_SDKS = ReorderCompilerIncs $(VBOX_WINDDK_GST)
Note:
See TracChangeset
for help on using the changeset viewer.