Changeset 96692 in vbox for trunk/Config.kmk
- Timestamp:
- Sep 12, 2022 12:39:59 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r96684 r96692 179 179 180 180 181 # 182 # Some source paths of global interest. 183 # 184 VBOX_PATH_SRC_CERTIFICATES = $(PATH_ROOT)/src/VBox/HostDrivers/Support/Certificates 185 186 187 # 181 188 # Delete targets on failure. 189 # 182 190 .DELETE_ON_ERROR: 183 191 192 # 184 193 # Notify about important kBuild updates. 194 # 185 195 if $(KBUILD_VERSION_MAJOR) == 0 \ 186 196 && ( $(KBUILD_VERSION_MINOR) >= 2 \ … … 330 340 endif 331 341 342 332 343 # 333 344 # The VirtualBox Configuration Defaults. … … 409 420 # (Used by the additions build server, don't invert it.) 410 421 #VBOX_WITHOUT_ADDITIONS_ISO = 1 422 # Include root certs in the windows GAs installer and on the ISO (ignore when 423 # signing is disabled). Since we don't have any runtime detection of which 424 # roots are actually being used, we expect shipping of the non-default root 425 # with the signing setup in LocalConfig.kmk. Following root cert selectors 426 # are available (more details in GA tools & installer): 427 # - VBOX_WITH_GA_ROOT_VERISIGN_G5 428 # - VBOX_WITH_GA_ROOT_DIGICERT_ASSURED_ID 429 # - VBOX_WITH_GA_ROOT_DIGICERT_HIGH_ASSURANCE_EV 430 VBOX_WITH_GA_ROOT_CERTS_INCLUDED := 1 431 if (!defined(VBOX_CERTIFICATE_SUBJECT_NAME) || !defined(VBOX_CERTIFICATE_SHA2_SUBJECT_NAME)) && "$(VBOX_SIGNING_MODE)" == "release" 432 VBOX_WITH_GA_ROOT_DIGICERT_ASSURED_ID := 1 433 endif 411 434 ## @} 435 412 436 # Set build options right for building the Additions as an RPM package. 413 437 # VBOX_ONLY_RPM_ADDITIONS = 1 … … 4271 4295 VBOX_SIGN_IMAGE_CMDS_ORDERDEPS ?= $(if $(eq $(tool_do),LINK_LIBRARY),,$(VBOX_SIGN_IMAGE_ORDERDEPS)) 4272 4296 endif 4273 ## Enable signing of the additions. 4297 ## Enable signing of the additions drivers, i.e. create CAT files. 4298 ## @todo r=bird: This bugger is entirely misplaced, as it belongs in the additions config section so it can be properly overriden. 4274 4299 VBOX_SIGN_ADDITIONS ?= 1 4275 4300 ## Set if we should include the legacy timestamp CA. … … 4279 4304 endif 4280 4305 endif 4281 VBOX_LEGACY_TS_CA_FILE = $( PATH_ROOT)/src/VBox/HostDrivers/Support/Certificates/Timestamp-VBoxLegacyWinCA.crt4306 VBOX_LEGACY_TS_CA_FILE = $(VBOX_PATH_SRC_CERTIFICATES)/Timestamp-VBoxLegacyWinCA.crt 4282 4307 4283 4308 else ifeq ($(KBUILD_HOST),darwin)
Note:
See TracChangeset
for help on using the changeset viewer.