Changeset 11636 in vbox
- Timestamp:
- Aug 25, 2008 10:17:46 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35318
- Location:
- trunk
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r11634 r11636 1324 1324 # @param 1 The inf file to edit. 1325 1325 # @param 2 The output file. 1326 VBOX_EDIT_INF32_FN = $(SED) $(if $(VBOX_SIGNING_MODE),-e 's/^;cat *//', -e '/^;cat /d') -e 's/^;x86 *//' -e '/^;amd64 /d' --output $(2) $(1) 1326 VBOX_EDIT_INF32_FN = $(SED) $(if $(VBOX_SIGNING_MODE),-e 's/^;cat *//', -e '/^;cat /d') \ 1327 -e 's/^;x86 *//' \ 1328 -e '/^;amd64 /d' \ 1329 -e 's/^;edit-DriverVer.*/DriverVer = $(date-utc %m\/%d\/%Y),$(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD)/' \ 1330 --output $(2) \ 1331 $(1) 1327 1332 ## Edit an inf file an x86 target. 1328 1333 # @param 1 The inf file to edit. 1329 1334 # @param 2 The output file. 1330 VBOX_EDIT_INF64_FN = $(SED) $(if $(VBOX_SIGNING_MODE),-e 's/^;cat *//', -e '/^;cat /d') -e 's/^;amd64 *//' -e '/^;x86 /d' --output $(2) $(1) 1335 VBOX_EDIT_INF64_FN = $(SED) \ 1336 $(if $(VBOX_SIGNING_MODE),-e 's/^;cat *//', -e '/^;cat /d')\ 1337 -e 's/^;amd64 *//' \ 1338 -e '/^;x86 /d' \ 1339 -e 's/^;edit-DriverVer.*/DriverVer = $(date-utc %m\/%d\/%Y),$(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD)/' \ 1340 --output $(2) \ 1341 $(1) 1331 1342 1332 1343 # -
trunk/src/VBox/Additions/WINNT/Graphics/Makefile.kmk
r11635 r11636 41 41 VBoxVideo-inf_INST = $(INST_ADDITIONS) 42 42 VBoxVideo-inf_MODE = a+r,u+w 43 ifndef VBOX_SIGN_ADDITIONS44 43 VBoxVideo-inf_SOURCES = \ 45 44 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf 46 else 47 VBoxVideo-inf_SOURCES = \ 48 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf \ 45 ifdef VBOX_SIGN_ADDITIONS 46 VBoxVideo-inf_SOURCES += \ 49 47 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.sys \ 50 48 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxDisp.dll \ … … 52 50 endif # signing 53 51 VBoxVideo-inf_CLEAN = $(VBoxVideo-inf_SOURCES) 54 VBoxVideo-inf_BLDDIRS = $(PATH_TARGET)/VBoxVideoCat.dir 52 VBoxVideo-inf_BLDDIRS = \ 53 $(PATH_TARGET)/VBoxVideoCat.dir 55 54 56 55 $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf: $(PATH_SUB_CURRENT)/Miniport/VBoxVideo.inf $(MAKEFILE_CURRENT) | $$(call DIRDEP,$$(@D)) -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Mirror/Makefile.kmk
r10129 r11636 43 43 $(VBOX_LIB_IPRT_GUEST_R0) 44 44 45 $(error Fix inf editing and dirver signing) 46 45 47 include $(KBUILD_PATH)/subfooter.kmk 46 48 -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Mirror/vrdpdd.inf
r8239 r11636 25 25 ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318} 26 26 Class=Display 27 ;edit-DriverVer=08/26/2008,2.00.0000 27 28 28 29 [DestinationDirs] -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.inf
r11608 r11636 22 22 ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318} 23 23 Class=Display 24 DriverVer = 05/17/2007,1.04.000024 ;edit-DriverVer=08/26/2008,2.00.0000 25 25 ;cat CatalogFile = VBoxVideo.cat 26 26 -
trunk/src/VBox/Additions/WINNT/Makefile.kmk
r11577 r11636 53 53 VBoxGuest-inf_INST = $(INST_ADDITIONS) 54 54 VBoxGuest-inf_MODE = a+r,u+w 55 ifndef VBOX_SIGN_ADDITIONS56 55 VBoxGuest-inf_SOURCES = \ 57 56 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf 58 else 59 VBoxGuest-inf_SOURCES = \ 60 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf \ 57 ifdef VBOX_SIGN_ADDITIONS 58 VBoxGuest-inf_SOURCES += \ 61 59 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.cat \ 62 60 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.sys \ … … 66 64 endif # signing 67 65 VBoxGuest-inf_CLEAN = $(VBoxGuest-inf_SOURCES) 68 VBoxGuest-inf_BLDDIRS = $(PATH_TARGET)/VBoxGuestCat.dir 66 VBoxGuest-inf_BLDDIRS = \ 67 $(PATH_TARGET)/VBoxGuestCat.dir 69 68 70 69 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf: $(PATH_SUB_CURRENT)/VBoxGuest/VBoxGuest.inf $(MAKEFILE_CURRENT) | $$(call DIRDEP,$$(@D)) -
trunk/src/VBox/Additions/WINNT/MouseFilter/VBoxMouse.inf
r11615 r11636 22 22 Class=Mouse 23 23 ClassGuid={4D36E96F-E325-11CE-BFC1-08002BE10318} 24 DriverVer=08/25/2008,2.00.00024 ;edit-DriverVer=08/26/2008,2.00.0000 25 25 ;cat CatalogFile=VBoxMouse.cat 26 26 -
trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest.inf
r11603 r11636 23 23 Provider=%SUN% 24 24 LayoutFile=layout.inf 25 DriverVer=08/21/2006,5.00.2072 25 ;edit-DriverVer=08/26/2008,2.00.0000 26 26 ;cat CatalogFile=VBoxGuest.cat 27 27 -
trunk/src/VBox/HostDrivers/Support/win/VBoxDrv.inf
r8238 r11636 33 33 ClassGuid={ce4a90b5-1d8c-435d-b349-232ce55cb17f} 34 34 Provider=%SUN% 35 DriverVer=08/21/2006,8.1.0.035 ;edit-DriverVer=08/26/2008,2.00.0000 36 36 DriverPackageType=KernelService 37 37 ;cat CatalogFile=VBoxDrv.cat -
trunk/src/VBox/HostDrivers/VBoxTAP/VBoxTAP.inf
r11448 r11636 27 27 ; This version number should match the version 28 28 ; number given in SOURCES. 29 ;; @todo: edit this too? what's the above comment about? 29 30 DriverVer=02/19/2007,8.00.00.0005 30 31
Note:
See TracChangeset
for help on using the changeset viewer.