Changeset 98626 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Video
- Timestamp:
- Feb 18, 2023 2:13:49 AM (2 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video
- Files:
-
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/Makefile.kmk
r98438 r98626 43 43 VBoxVideo-inf_SOURCES = \ 44 44 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf 45 VBoxVideo-inf_SOURCES.x86 = \ 46 $(PATH_TARGET)/VBoxVideoEarlyNTCat.dir/VBoxVideoEarlyNT.inf 45 47 VBoxVideo-inf_CLEAN = $(VBoxVideo-inf_SOURCES) 46 48 VBoxVideo-inf_BLDDIRS = $(PATH_TARGET)/VBoxVideoCat.dir 49 VBoxVideo-inf_BLDDIRS.x86 = $(PATH_TARGET)/VBoxVideoEarlyNTCat.dir 47 50 48 51 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf: $(PATH_SUB_CURRENT)/mp/xpdm/VBoxVideo.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 49 52 $(call MSG_GENERATE,VBoxVideo-inf,$@,$<) 53 $(call VBOX_EDIT_INF_FN,$<,$@) 54 55 $(PATH_TARGET)/VBoxVideoEarlyNTCat.dir/VBoxVideoEarlyNT.inf: $(PATH_SUB_CURRENT)/mp/xpdm/VBoxVideoEarlyNT.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 56 $(call MSG_GENERATE,VBoxVideoEarlyNT-inf,$@,$<) 50 57 $(call VBOX_EDIT_INF_FN,$<,$@) 51 58 … … 56 63 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.sys \ 57 64 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxDisp.dll 58 59 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.sys: $$(VBoxVideo_1_TARGET) | $$(dir $$@) 60 $(INSTALL) -m 644 $< $(@D) 61 62 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxDisp.dll: $$(VBoxDisp_1_TARGET) | $$(dir $$@) 65 VBoxVideo-inf_SOURCES.x86 += \ 66 $(PATH_TARGET)/VBoxVideoEarlyNTCat.dir/VBoxVideoEarlyNT.cat 67 68 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.sys \ 69 $(PATH_TARGET)/VBoxVideoEarlyNTCat.dir/VBoxVideo.sys: $$(VBoxVideo_1_TARGET) | $$(dir $$@) 70 $(INSTALL) -m 644 $< $(@D) 71 72 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxDisp.dll \ 73 $(PATH_TARGET)/VBoxVideoEarlyNTCat.dir/VBoxDisp.dll: $$(VBoxDisp_1_TARGET) | $$(dir $$@) 63 74 $(INSTALL) -m 644 $< $(@D) 64 75 … … 69 80 $(call MSG_TOOL,Inf2Cat,VBoxVideo-inf,$@,$<) 70 81 $(call VBOX_MAKE_CAT_FN, $(@D),$@) 82 83 $(PATH_TARGET)/VBoxVideoEarlyNTCat.dir/VBoxVideoEarlyNT.cat: \ 84 $(PATH_TARGET)/VBoxVideoEarlyNTCat.dir/VBoxVideoEarlyNT.inf \ 85 $(PATH_TARGET)/VBoxVideoEarlyNTCat.dir/VBoxVideo.sys \ 86 $(PATH_TARGET)/VBoxVideoEarlyNTCat.dir/VBoxDisp.dll 87 $(call MSG_TOOL,Inf2Cat,VBoxVideoEarlyNT-inf,$@,$<) 88 $(call VBOX_MAKE_CAT_FN, $(@D),$@) 89 71 90 endif # signing 72 91 -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/VBoxVideo.inf
r98328 r98626 1 1 ; $Id$ 2 2 ;; @file 3 ; VirtualBox Video miniport driver 3 ; VirtualBox Video miniport driver, XP+ edition. 4 4 ; 5 5 -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/VBoxVideoEarlyNT.inf
r98599 r98626 1 1 ; $Id$ 2 2 ;; @file 3 ; VirtualBox Video miniport driver 3 ; VirtualBox Video miniport driver, Windows 2000 and NT4 edition. 4 4 ; 5 5 … … 33 33 DriverPackageType=PlugAndPlay 34 34 ;edit-DriverVer=08/26/2008,2.00.0000 35 ;cat CatalogFile = VBoxVideo .cat35 ;cat CatalogFile = VBoxVideoEarlyNT.cat 36 36 37 37 [DestinationDirs] … … 40 40 VBoxVideo.Display = 11 ; system32 41 41 42 ; Windows 2000 and NT4 treats entries here as pure 'name=section' and will not 43 ; split the value on commas. Newer InfVerif.exe requires the comma stuff here. 42 44 [Manufacturer] 43 ;x86 %ORACLE%=VBoxVideo@COMMA-NT-ARCH@ 44 ;amd64 %ORACLE%=VBoxVideo@COMMA-NT-ARCH@@[email protected] 45 %ORACLE%=VBoxVideo 45 46 46 [VBoxVideo @DOT-NT-ARCH@]47 [VBoxVideo] 47 48 %VBoxVideo.SvcDesc% = VBoxVideo_Install, PCI\VEN_80EE&DEV_BEEF 48 49 ;amd64 [VBoxVideo@[email protected]]50 ;amd64 %VBoxVideo.SvcDesc% = VBoxVideo_Install, PCI\VEN_80EE&DEV_BEEF51 49 52 50 [VBoxVideo_Install] … … 60 58 VBoxDisp.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME 61 59 62 [VBoxVideo _Install.Services]60 [VBoxVideo.Services] 63 61 AddService=VBoxVideo, 0x00000002, vboxvideo_Service_Inst, vboxvideo_EventLog_Inst 64 62
Note:
See TracChangeset
for help on using the changeset viewer.