- 時間撮記:
- 2024-8-14 下午01:16:30 (7 月 以前)
- svn:sync-xref-src-repo-rev:
- 164367
- 位置:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- 檔案:
-
- 修改 2 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
屬性 svn:mergeinfo
由 (切換已刪除的分支)
變更至 (切換已刪除的分支)/vendor/edk2/current 103735-103757,103769-103776,129194-159268 /vendor/edk2/current 103735-103757,103769-103776,129194-164365
-
屬性 svn:mergeinfo
由 (切換已刪除的分支)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/.pytool/CISettings.py
r101291 r105670 8 8 import os 9 9 import logging 10 import sys 10 11 from edk2toolext.environment import shell_environment 11 12 from edk2toolext.invocables.edk2_ci_build import CiBuildSettingsManager … … 14 15 from edk2toolext.invocables.edk2_pr_eval import PrEvalSettingsManager 15 16 from edk2toollib.utility_functions import GetHostInfo 17 from pathlib import Path 18 19 20 try: 21 # Temporarily needed until edk2 can update to the latest edk2-pytools 22 # that has the CodeQL helpers. 23 # 24 # May not be present until submodules are populated. 25 # 26 root = Path(__file__).parent.parent.resolve() 27 sys.path.append(str(root/'BaseTools'/'Plugin'/'CodeQL'/'integration')) 28 import stuart_codeql as codeql_helpers 29 except ImportError: 30 pass 16 31 17 32 … … 35 50 group.add_argument("-no_piptools", "--npt", dest="no_piptools", action="store_true", default=False, help="Force the system to not use pip tools") 36 51 52 try: 53 codeql_helpers.add_command_line_option(parserObj) 54 except NameError: 55 pass 56 37 57 def RetrieveCommandLineOptions(self, args): 38 58 super().RetrieveCommandLineOptions(args) … … 41 61 if args.no_piptools: 42 62 self.UseBuiltInBaseTools = False 63 64 try: 65 self.codeql = codeql_helpers.is_codeql_enabled_on_command_line(args) 66 except NameError: 67 pass 43 68 44 69 # ####################################################################################### # … … 170 195 logging.warning("Falling back to using in-tree BaseTools") 171 196 197 try: 198 scopes += codeql_helpers.get_scopes(self.codeql) 199 200 if self.codeql: 201 shell_environment.GetBuildVars().SetValue( 202 "STUART_CODEQL_AUDIT_ONLY", 203 "TRUE", 204 "Set in CISettings.py") 205 except NameError: 206 pass 207 172 208 self.ActualScopes = scopes 173 209 return self.ActualScopes … … 200 236 rs.append(RequiredSubmodule( 201 237 "MdePkg/Library/MipiSysTLib/mipisyst", False)) 238 rs.append(RequiredSubmodule( 239 "CryptoPkg/Library/MbedTlsLib/mbedtls", False)) 240 rs.append(RequiredSubmodule( 241 "SecurityPkg/DeviceSecurity/SpdmLib/libspdm", False)) 202 242 return rs 203 243
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器