VirtualBox

Changeset 11636 in vbox


Ignore:
Timestamp:
Aug 25, 2008 10:17:46 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
35318
Message:

#3105: Implemented editing of DriverVer in driver .inf files.

Location:
trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/Config.kmk

    r11634 r11636  
    13241324# @param    1   The inf file to edit.
    13251325# @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)
     1326VBOX_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)
    13271332## Edit an inf file an x86 target.
    13281333# @param    1   The inf file to edit.
    13291334# @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)
     1335VBOX_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)
    13311342
    13321343#
  • trunk/src/VBox/Additions/WINNT/Graphics/Makefile.kmk

    r11635 r11636  
    4141VBoxVideo-inf_INST = $(INST_ADDITIONS)
    4242VBoxVideo-inf_MODE = a+r,u+w
    43 ifndef VBOX_SIGN_ADDITIONS
    4443VBoxVideo-inf_SOURCES = \
    4544        $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf
    46 else
    47 VBoxVideo-inf_SOURCES = \
    48         $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf \
     45ifdef VBOX_SIGN_ADDITIONS
     46VBoxVideo-inf_SOURCES += \
    4947        $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.sys \
    5048        $(PATH_TARGET)/VBoxVideoCat.dir/VBoxDisp.dll \
     
    5250endif # signing
    5351VBoxVideo-inf_CLEAN = $(VBoxVideo-inf_SOURCES)
    54 VBoxVideo-inf_BLDDIRS = $(PATH_TARGET)/VBoxVideoCat.dir
     52VBoxVideo-inf_BLDDIRS = \
     53        $(PATH_TARGET)/VBoxVideoCat.dir
    5554
    5655$(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  
    4343        $(VBOX_LIB_IPRT_GUEST_R0)
    4444
     45$(error Fix inf editing and dirver signing)
     46
    4547include $(KBUILD_PATH)/subfooter.kmk
    4648
  • trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Mirror/vrdpdd.inf

    r8239 r11636  
    2525ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318}
    2626Class=Display
     27;edit-DriverVer=08/26/2008,2.00.0000
    2728
    2829[DestinationDirs]
  • trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.inf

    r11608 r11636  
    2222ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318}
    2323Class=Display
    24 DriverVer = 05/17/2007,1.04.0000
     24;edit-DriverVer=08/26/2008,2.00.0000
    2525;cat CatalogFile = VBoxVideo.cat
    2626
  • trunk/src/VBox/Additions/WINNT/Makefile.kmk

    r11577 r11636  
    5353VBoxGuest-inf_INST = $(INST_ADDITIONS)
    5454VBoxGuest-inf_MODE = a+r,u+w
    55 ifndef VBOX_SIGN_ADDITIONS
    5655VBoxGuest-inf_SOURCES = \
    5756        $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf
    58 else
    59 VBoxGuest-inf_SOURCES = \
    60         $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf \
     57ifdef VBOX_SIGN_ADDITIONS
     58VBoxGuest-inf_SOURCES += \
    6159        $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.cat \
    6260        $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.sys \
     
    6664endif # signing
    6765VBoxGuest-inf_CLEAN = $(VBoxGuest-inf_SOURCES)
    68 VBoxGuest-inf_BLDDIRS = $(PATH_TARGET)/VBoxGuestCat.dir
     66VBoxGuest-inf_BLDDIRS = \
     67        $(PATH_TARGET)/VBoxGuestCat.dir
    6968
    7069$(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  
    2222Class=Mouse
    2323ClassGuid={4D36E96F-E325-11CE-BFC1-08002BE10318}
    24 DriverVer=08/25/2008,2.00.000
     24;edit-DriverVer=08/26/2008,2.00.0000
    2525;cat CatalogFile=VBoxMouse.cat
    2626
  • trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest.inf

    r11603 r11636  
    2323Provider=%SUN%
    2424LayoutFile=layout.inf
    25 DriverVer=08/21/2006,5.00.2072
     25;edit-DriverVer=08/26/2008,2.00.0000
    2626;cat CatalogFile=VBoxGuest.cat
    2727
  • trunk/src/VBox/HostDrivers/Support/win/VBoxDrv.inf

    r8238 r11636  
    3333ClassGuid={ce4a90b5-1d8c-435d-b349-232ce55cb17f}
    3434Provider=%SUN%
    35 DriverVer=08/21/2006,8.1.0.0
     35;edit-DriverVer=08/26/2008,2.00.0000
    3636DriverPackageType=KernelService
    3737;cat CatalogFile=VBoxDrv.cat
  • trunk/src/VBox/HostDrivers/VBoxTAP/VBoxTAP.inf

    r11448 r11636  
    2727; This version number should match the version
    2828; number given in SOURCES.
     29;; @todo: edit this too? what's the above comment about?
    2930   DriverVer=02/19/2007,8.00.00.0005
    3031
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette