VirtualBox

Changeset 58460 in vbox


Ignore:
Timestamp:
Oct 28, 2015 8:34:41 PM (9 years ago)
Author:
vboxsync
Message:

EFI/Firmware: Merged in changes from ../UDK2014.SP1/.

Location:
trunk/src/VBox/Devices/EFI/Firmware
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/Firmware/Config.kmk

    r58179 r58460  
    4343VBOX_EFI_OUTPUT_SUBDIR = $(VBOX_EFI_BUILD_TARGET)_$(VBOX_EFI_TOOL_CHAIN)
    4444
     45# VBox Yasm command
     46VBOX_YASMCMD   ?= $(firstword $(wildcard $(KBUILD_DEVTOOLS_HST)/bin/yasm$(HOSTSUFF_EXE)) yasm$(HOSTSUFF_EXE))
    4547
    4648#
     
    167169        MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer/$(VBOX_EFI_DEBUG_DIR)/WatchdogTimer \
    168170        OvmfPkg/BlockMmioToBlockIoDxe/BlockIo/$(VBOX_EFI_DEBUG_DIR)/BlockMmioToBlockIoDxe \
    169         OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb/$(VBOX_EFI_DEBUG_DIR)/EmuVariableFvbRuntimeDxe \
     171        OvmfPkg/PlatformPei/PlatformPei/$(VBOX_EFI_DEBUG_DIR)/PlatformPei \
    170172        OvmfPkg/Sec/SecMain/$(VBOX_EFI_DEBUG_DIR)/SecMain \
    171173        OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe/$(VBOX_EFI_DEBUG_DIR)/SmbiosPlatformDxe \
     
    180182        UefiCpuPkg/CpuDxe/CpuDxe/$(VBOX_EFI_DEBUG_DIR)/CpuDxe \
    181183        UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe/$(VBOX_EFI_DEBUG_DIR)/CpuIo2Dxe \
    182         OvmfPkg/PlatformPei/PlatformPei/$(VBOX_EFI_DEBUG_DIR)/PlatformPei \
    183184        VBoxPkg/VBoxAppleSim/VBoxAppleSim/$(VBOX_EFI_DEBUG_DIR)/VBoxAppleSim \
    184185        VBoxPkg/VBoxFsDxe/VBoxHfs/$(VBOX_EFI_DEBUG_DIR)/VBoxHfs \
    185186        VBoxPkg/VBoxFsDxe/VBoxIso9660/$(VBOX_EFI_DEBUG_DIR)/VBoxIso9600 \
    186187        VBoxPkg/VBoxSysTables/VBoxSysTables/$(VBOX_EFI_DEBUG_DIR)/VBoxSysTables \
    187         VBoxPkg/VBoxVariable/VBoxVariableRuntimeDxe/$(VBOX_EFI_DEBUG_DIR)/EmuVariableRuntimeDxe \
    188188        VBoxPkg/VBoxVgaDxe/VBoxVgaDxe/$(VBOX_EFI_DEBUG_DIR)/VBoxVgaDxe \
    189         VBoxPkg/VBoxVgaMiniPortDxe/VBoxVgaMiniPortDxe/$(VBOX_EFI_DEBUG_DIR)/VBoxVgaMiniPortDxe \
     189        VBoxPkg/VBoxVgaMiniPortDxe/VBoxVgaMiniPortDxe/$(VBOX_EFI_DEBUG_DIR)/VBoxVgaMiniPortDxe
    190190
    191191# Version of VBOX_EFI_MODULES without directories. (Using $(value ) to avoid
  • trunk/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c

    r58459 r58460  
    24202420      if (Handle != NULL) {
    24212421#ifdef VBOX /* We have more options to try out because of apple. */
    2422       //
    2423       // Try parse any config="folder-path/" stuff found in the optional
    2424       // section of the boot option and attempt to load boot.efi it.
    2425       //
    2426       if (Option->LoadOptionsSize) {
    2427         /*
     2422        //
     2423        // Try parse any config="folder-path/" stuff found in the optional
     2424        // section of the boot option and attempt to load boot.efi it.
     2425        //
     2426        if (Option->LoadOptionsSize) {
     2427          /*
    24282428           * First, see the there is a config=folder in the load options.  We
    24292429           * interpret it as a path to the folder containing boot.efi and go
     
    24612461           */
    24622462          VBoxLogFlowFuncMarkVar(Option->LoadOptions, "%s");
    2463         if (StrnCmp(L"config=", (CHAR16 *)Option->LoadOptions, 7) == 0) {
    2464           EFI_SIMPLE_FILE_SYSTEM_PROTOCOL  *Volume;
    2465           CHAR16 *pszConfigValue = &((CHAR16 *)Option->LoadOptions)[7];
    2466           CHAR16 *pszFolder = NULL;
    2467           CHAR16 *pszTemp0 = NULL;
    2468           CHAR16 *pszTemp1 = NULL;
    2469           BOOLEAN fQuoted = (pszConfigValue[0] == L'\"');
    2470           pszTemp0 = &pszConfigValue[fQuoted ? 2 : 1];
    2471           pszTemp1 = pszTemp0;
    2472           VBoxLogFlowFuncMarkVar(pszTemp0, "%s");
    2473           VBoxLogFlowFuncMarkVar(pszTemp1, "%s");
    2474           pszFolder = AllocateZeroPool((StrLen(pszConfigValue) + StrLen(L"\\boot.efi") + 1) * sizeof(UINT16));
    2475           while (pszTemp0) {
    2476               VBoxLogFlowFuncMarkVar(pszTemp0, "%s");
    2477               VBoxLogFlowFuncMarkVar(pszTemp1, "%s");
    2478               pszFolder = StrnCat(pszFolder, pszTemp1, StrLen(pszTemp1) - StrLen(pszTemp0));
    2479               pszTemp1 = pszTemp0;
    2480               pszFolder = StrCat(pszFolder, L"\\");
    2481               VBoxLogFlowFuncMarkVar(pszFolder, "%s");
    2482               VBoxLogFlowFuncMarkVar(pszTemp0, "%s");
    2483               VBoxLogFlowFuncMarkVar(pszTemp1, "%s");
    2484               pszTemp0 = StrStr(&pszTemp0[1], L"\\");
    2485               VBoxLogFlowFuncMarkVar(pszTemp0, "%s");
    2486           }
    2487           pszFolder = StrCat(pszFolder, L"boot.efi");
    2488           VBoxLogFlowFuncMarkVar(pszFolder,"%s");
    2489 
    2490           Status = gBS->HandleProtocol(Handle, &gEfiSimpleFileSystemProtocolGuid, (VOID **)&Volume);
    2491           VBoxLogFlowFuncMarkRC(Status);
    2492           if (!EFI_ERROR(Status)) {
    2493             FilePath = FileDevicePath((EFI_HANDLE)Handle, pszFolder);
    2494             if (FilePath) {
    2495               VBoxLogFlowFuncMarkVar(DevicePathToStr(FilePath), "%s");
    2496               REPORT_STATUS_CODE(EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderLoad));
    2497               Status = gBS->LoadImage(TRUE, gImageHandle, FilePath, NULL, 0, &ImageHandle );
    2498               VBoxLogFlowFuncMarkRC(Status);
    2499               /** @todo Probably leaking memory here! */
     2463          if (StrnCmp(L"config=", (CHAR16 *)Option->LoadOptions, 7) == 0) {
     2464            EFI_SIMPLE_FILE_SYSTEM_PROTOCOL  *Volume;
     2465            CHAR16 *pszConfigValue = &((CHAR16 *)Option->LoadOptions)[7];
     2466            CHAR16 *pszFolder = NULL;
     2467            CHAR16 *pszTemp0 = NULL;
     2468            CHAR16 *pszTemp1 = NULL;
     2469            BOOLEAN fQuoted = (pszConfigValue[0] == L'\"');
     2470            pszTemp0 = &pszConfigValue[fQuoted ? 2 : 1];
     2471            pszTemp1 = pszTemp0;
     2472            VBoxLogFlowFuncMarkVar(pszTemp0, "%s");
     2473            VBoxLogFlowFuncMarkVar(pszTemp1, "%s");
     2474            pszFolder = AllocateZeroPool((StrLen(pszConfigValue) + StrLen(L"\\boot.efi") + 1) * sizeof(UINT16));
     2475            while (pszTemp0) {
     2476                VBoxLogFlowFuncMarkVar(pszTemp0, "%s");
     2477                VBoxLogFlowFuncMarkVar(pszTemp1, "%s");
     2478                pszFolder = StrnCat(pszFolder, pszTemp1, StrLen(pszTemp1) - StrLen(pszTemp0));
     2479                pszTemp1 = pszTemp0;
     2480                pszFolder = StrCat(pszFolder, L"\\");
     2481                VBoxLogFlowFuncMarkVar(pszFolder, "%s");
     2482                VBoxLogFlowFuncMarkVar(pszTemp0, "%s");
     2483                VBoxLogFlowFuncMarkVar(pszTemp1, "%s");
     2484                pszTemp0 = StrStr(&pszTemp0[1], L"\\");
     2485                VBoxLogFlowFuncMarkVar(pszTemp0, "%s");
     2486            }
     2487            pszFolder = StrCat(pszFolder, L"boot.efi");
     2488            VBoxLogFlowFuncMarkVar(pszFolder,"%s");
     2489
     2490            Status = gBS->HandleProtocol(Handle, &gEfiSimpleFileSystemProtocolGuid, (VOID **)&Volume);
     2491            VBoxLogFlowFuncMarkRC(Status);
     2492            if (!EFI_ERROR(Status)) {
     2493              FilePath = FileDevicePath((EFI_HANDLE)Handle, pszFolder);
     2494              if (FilePath) {
     2495                VBoxLogFlowFuncMarkVar(DevicePathToStr(FilePath), "%s");
     2496                REPORT_STATUS_CODE(EFI_PROGRESS_CODE, PcdGet32 (PcdProgressCodeOsLoaderLoad));
     2497                Status = gBS->LoadImage(TRUE, gImageHandle, FilePath, NULL, 0, &ImageHandle );
     2498                VBoxLogFlowFuncMarkRC(Status);
     2499                /** @todo Probably leaking memory here! */
     2500              }
    25002501            }
    25012502          }
    25022503        }
    2503       }
    2504 
    2505       //
    2506       // Try load any of the default boot files.
    2507       //
    2508       if (EFI_ERROR(Status)) {
    2509         UINT32 IdxFile;
    2510         for (IdxFile = 0; IdxFile < sizeof(maBdsLibBootFiles) / sizeof(maBdsLibBootFiles[0]); IdxFile++) {
    2511           FilePath = FileDevicePath(Handle, maBdsLibBootFiles[IdxFile]);
    2512           if (FilePath) {
    2513             VBoxLog(("BdsLibBootViaBootOption: Trying to load '%s'...\n", DevicePathToStr(FilePath)));
    2514             REPORT_STATUS_CODE(EFI_PROGRESS_CODE, PcdGet32(PcdProgressCodeOsLoaderLoad));
    2515             Status = gBS->LoadImage(TRUE, gImageHandle, FilePath, NULL, 0, &ImageHandle );
    2516             if (!EFI_ERROR(Status)) {
    2517               VBoxLog(("BdsLibBootViaBootOption: Successfully loaded boot file: %s\n", DevicePathToStr(FilePath)));
    2518               break;
     2504
     2505        //
     2506        // Try load any of the default boot files.
     2507        //
     2508        if (EFI_ERROR(Status)) {
     2509          UINT32 IdxFile;
     2510          for (IdxFile = 0; IdxFile < sizeof(maBdsLibBootFiles) / sizeof(maBdsLibBootFiles[0]); IdxFile++) {
     2511            FilePath = FileDevicePath(Handle, maBdsLibBootFiles[IdxFile]);
     2512            if (FilePath) {
     2513              VBoxLog(("BdsLibBootViaBootOption: Trying to load '%s'...\n", DevicePathToStr(FilePath)));
     2514              REPORT_STATUS_CODE(EFI_PROGRESS_CODE, PcdGet32(PcdProgressCodeOsLoaderLoad));
     2515              Status = gBS->LoadImage(TRUE, gImageHandle, FilePath, NULL, 0, &ImageHandle );
     2516              if (!EFI_ERROR(Status)) {
     2517                VBoxLog(("BdsLibBootViaBootOption: Successfully loaded boot file: %s\n", DevicePathToStr(FilePath)));
     2518                break;
     2519              }
     2520              VBoxLog(("BdsLibBootViaBootOption: Failed loading '%s': 0x%x(%r)\n", DevicePathToStr(FilePath), Status, Status));
     2521              FilePath = NULL; /** @todo Probably leaking memory here! */
    25192522            }
    2520             VBoxLog(("BdsLibBootViaBootOption: Failed loading '%s': 0x%x(%r)\n", DevicePathToStr(FilePath), Status, Status));
    2521             FilePath = NULL; /** @todo Probably leaking memory here! */
    25222523          }
    25232524        }
    2524       }
    25252525#else  /* !VBOX */
    25262526        //
     
    25412541        }
    25422542#endif /* !VBOX */
    2543     }
    2544   }
     2543      }
     2544    }
    25452545  }
    25462546  //
  • trunk/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsMisc.c

    r58459 r58460  
    565565
    566566  if (TempSize + FilePathSize + sizeof (UINT16) + sizeof (UINT32) > VariableSize) {
    567       VBoxLogFlowFuncLeave();
    568       return FALSE;
     567    VBoxLogFlowFuncLeave();
     568    return FALSE;
    569569  }
    570570
  • trunk/src/VBox/Devices/EFI/Firmware/Makefile.kmk

    r56292 r58460  
    155155define TOOL_VBoxEfiResetVectorLd_LINK_MISCBIN_CMDS
    156156        $(VBOX_BLD_PYTHON) $(VBOX_PATH_EFI_FIRMWARE)/UefiCpuPkg/ResetVector/Vtf0/Tools/FixupForRawSection.py \
    157         "--only-padd-image" \
    158157                "$(objs)" \
    159158                "$(out)"
     
    168167TEMPLATE_VBoxEfiResetVectorRaw_ASFLAGS:= -f bin $(VBOX_YASM_Wno-segreg-in-64bit) --mapfile
    169168TEMPLATE_VBoxEfiResetVectorRaw_ASDEFS  = ASM_FORMAT_BIN __YASM__
     169TEMPLATE_VBoxEfiResetVectorRaw_INCS    = UefiCpuPkg/ResetVector/Vtf0
    170170TEMPLATE_VBoxEfiResetVectorRaw_LDTOOL  = VBoxEfiResetVectorLd
    171171
     
    173173VBoxEfiResetVector-x86_TEMPLATE = VBoxEfiResetVectorRaw
    174174VBoxEfiResetVector-x86_DEFS     = ARCH_IA32 RT_ARCH_X86 DEBUG_NONE
    175 VBoxEfiResetVector-x86_SOURCES  = UefiCpuPkg/ResetVector/Vtf0/ResetVectorCode.asm
     175VBoxEfiResetVector-x86_SOURCES  = OvmfPkg/ResetVector/ResetVectorCode.asm
    176176
    177177MISCBINS += VBoxEfiResetVector-amd64
    178178VBoxEfiResetVector-amd64_TEMPLATE = VBoxEfiResetVectorRaw
    179179VBoxEfiResetVector-amd64_DEFS     = ARCH_X64 RT_ARCH_AMD64 DEBUG_NONE
    180 VBoxEfiResetVector-amd64_SOURCES  = UefiCpuPkg/ResetVector/Vtf0/ResetVectorCode.asm
     180VBoxEfiResetVector-amd64_SOURCES  = OvmfPkg/ResetVector/ResetVectorCode.asm
    181181
    182182
     
    230230        -E 'PYTHONDONTWRITEBYTECODE=1' \
    231231        -E 'IASL_BIN=$(VBOX_IASLCMD)' \
     232        -E 'NASM_BIN=$(VBOX_YASMCMD)' \
    232233        -E 'WORKSPACE=$(VBOX_PATH_EFI_FIRMWARE)' \
    233234        -E 'EDK_TOOLS_PATH=$(VBOX_PATH_EFI_FIRMWARE)/BaseTools' \
     
    267268        $(SED) \
    268269                -e 's,@VBOX_IASLCMD@,$(VBOX_IASLCMD),' \
     270                -e 's,@VBOX_YASMCMD@,$(VBOX_YASMCMD),' \
    269271                -e 's,@KMK@,$(MAKE),' \
    270272               \
     
    289291                "# These variables cannot be overriden by the build.py command line." \
    290292                "TOOL_CHAIN_CONF = $(VBoxEfiFirmware_0_OUTDIR)/x86/Conf/tools_def.txt" \
    291                 "BUILD_RULE_CONF = BaseTools/Conf/build_rule.template" \
     293                "BUILD_RULE_CONF = $(VBOX_PATH_EFI_FIRMWARE)/BaseTools/Conf/build_rule.template" \
    292294                "" \
    293295                "# These variables are overridden and this is just for show." \
     
    298300                "MAX_CONCURRENT_THREAD_NUMBER = 1"
    299301
    300 ## @todo 32-bit DEBUG is busted, image to big.
    301302$(VBoxEfiFirmware_0_OUTDIR)/x86/$(VBOX_EFI_OUTPUT_SUBDIR)/FV/OVMF.fd \
    302303+ $(VBoxEfiFirmwareDbg32_SOURCES): \
     
    322323                "# These variables cannot be overriden by the build.py command line." \
    323324                "TOOL_CHAIN_CONF = $(VBoxEfiFirmware_0_OUTDIR)/amd64/Conf/tools_def.txt" \
    324                 "BUILD_RULE_CONF = BaseTools/Conf/build_rule.template" \
     325                "BUILD_RULE_CONF = $(VBOX_PATH_EFI_FIRMWARE)/BaseTools/Conf/build_rule.template" \
    325326                "" \
    326327                "# These variables are overridden and this is just for show." \
  • trunk/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Disk/PartitionDxe/Apple.c

    r58179 r58460  
    8686  IN  EFI_HANDLE                   Handle,
    8787  IN  EFI_DISK_IO_PROTOCOL         *DiskIo,
     88  IN  EFI_DISK_IO2_PROTOCOL        *DiskIo2,
    8889  IN  EFI_BLOCK_IO_PROTOCOL        *BlockIo,
    8990  IN  EFI_BLOCK_IO2_PROTOCOL       *BlockIo2,
     
    207208              Handle,
    208209              DiskIo,
     210              DiskIo2,
    209211              BlockIo,
    210212              BlockIo2,
  • trunk/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Disk/PartitionDxe/Partition.c

    r58459 r58460  
    199199                  );
    200200#ifdef VBOX
    201     VBoxLogFlowFuncLeaveRC(Status);
     201  VBoxLogFlowFuncLeaveRC(Status);
    202202#endif
    203203  return Status;
  • trunk/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Disk/PartitionDxe/Partition.h

    r58459 r58460  
    433433  Install child handles if the Handle supports Apple format.
    434434
    435   @param  This              Calling context.
    436   @param  Handle            Parent Handle.
    437   @param  DiskIo            Parent DiskIo interface.
    438   @param  BlockIo           Parent BlockIo interface.
     435  @param[in]  This              Calling context.
     436  @param[in]  Handle            Parent Handle.
     437  @param[in]  DiskIo            Parent DiskIo interface.
     438  @param[in]  DiskIo2           Parent DiskIo2 interface.
     439  @param[in]  BlockIo           Parent BlockIo interface.
    439440  @param[in]  BlockIo2          Parent BlockIo2 interface.
    440   @param  DevicePath        Parent Device Path.
     441  @param[in]  DevicePath        Parent Device Path.
    441442
    442443  @retval EFI_SUCCESS       A child handle was added.
     
    447448EFI_STATUS
    448449PartitionInstallAppleChildHandles (
    449   IN  EFI_DRIVER_BINDING_PROTOCOL  *This,
    450   IN  EFI_HANDLE                   Handle,
    451   IN  EFI_DISK_IO_PROTOCOL         *DiskIo,
    452   IN  EFI_BLOCK_IO_PROTOCOL        *BlockIo,
    453   IN  EFI_BLOCK_IO2_PROTOCOL       *BlockIo2,
    454   IN  EFI_DEVICE_PATH_PROTOCOL     *DevicePath
    455   );
    456 #endif
    457 
    458 typedef
    459 EFI_STATUS
    460 (*PARTITION_DETECT_ROUTINE) (
    461450  IN  EFI_DRIVER_BINDING_PROTOCOL  *This,
    462451  IN  EFI_HANDLE                   Handle,
     
    467456  IN  EFI_DEVICE_PATH_PROTOCOL     *DevicePath
    468457  );
    469 
    470458#endif
     459
     460typedef
     461EFI_STATUS
     462(*PARTITION_DETECT_ROUTINE) (
     463  IN  EFI_DRIVER_BINDING_PROTOCOL  *This,
     464  IN  EFI_HANDLE                   Handle,
     465  IN  EFI_DISK_IO_PROTOCOL         *DiskIo,
     466  IN  EFI_DISK_IO2_PROTOCOL        *DiskIo2,
     467  IN  EFI_BLOCK_IO_PROTOCOL        *BlockIo,
     468  IN  EFI_BLOCK_IO2_PROTOCOL       *BlockIo2,
     469  IN  EFI_DEVICE_PATH_PROTOCOL     *DevicePath
     470  );
     471
     472#endif
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseIoLibIntrinsic/IoLibGcc.c

    r53252 r58460  
    161161  UINT32   Data;
    162162
    163 #if 0
    164163  ASSERT ((Port & 3) == 0);
    165 #endif
    166164  __asm__ __volatile__ ("inl %w1,%0" : "=a" (Data) : "d" ((UINT16)Port));
    167165  return Data;
  • trunk/src/VBox/Devices/EFI/Firmware/OvmfPkg/Library/PlatformBdsLib/BdsPlatform.c

    r58459 r58460  
    7575    gBS->LocateProtocol(&gEfiUgaDrawProtocolGuid, NULL, (VOID **)&Uga);
    7676    gBS->LocateProtocol(&gEfiGraphicsOutputProtocolGuid, NULL, (VOID **)&Gop);
     77
    7778    if (Gop)
    7879    {
     
    106107{
    107108    EFI_EVENT event;
     109
    108110    gBS->CreateEventEx(EVT_NOTIFY_SIGNAL, TPL_NOTIFY, VBoxConsoleSwitchMode, NULL, &gEfiEventReadyToBootGuid, &event);
    109111    return EFI_SUCCESS;
  • trunk/src/VBox/Devices/EFI/Firmware/OvmfPkg/PlatformPei/MemDetect.c

    r58459 r58460  
    220220
    221221  if (UpperMemorySize != 0) {
    222       AddUntestedMemoryBaseSizeHob (BASE_4GB, UpperMemorySize);
     222    AddUntestedMemoryBaseSizeHob (BASE_4GB, UpperMemorySize);
    223223
    224224    MtrrSetMemoryAttribute (BASE_4GB, UpperMemorySize, CacheWriteBack);
  • trunk/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PciHostBridgeDxe/PciRootBridgeIo.c

    r58459 r58460  
    10241024          ASMInStrU32((RTIOPORT)Address, (uint32_t*)Buffer, (size_t)Count);
    10251025        break;
    1026         default:
     1026      default:
    10271027          ASSERT (FALSE);
    10281028    }
  • trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/VBoxDebugLib.c

    r56292 r58460  
    261261
    262262BOOLEAN EFIAPI
     263DebugPrintLevelEnabled(IN CONST UINTN ErrorLevel)
     264{
     265    /** @todo some PCD for this so we can disable it in release builds. */
     266    return TRUE;
     267}
     268
     269
     270BOOLEAN EFIAPI
    263271DebugCodeEnabled(VOID)
    264272{
  • trunk/src/VBox/Devices/EFI/Firmware/vbox-tools_def.txt

    r48792 r58460  
    2626DEFINE IASL_FLAGS              =
    2727DEFINE IASL_OUTFLAGS           = -p
     28
     29DEFINE NASM_BIN                = @VBOX_YASMCMD@
    2830
    2931DEFINE MSFT_ASLPP_FLAGS        = /nologo /E /C /FIAutoGen.h
     
    347349*_*_*_VPDTOOL_GUID         = 8C3D856A-9BE6-468E-850A-24F7A8D38E08
    348350
     351##################
     352# NASM tool definitions
     353##################
     354*_*_*_NASM_PATH                = DEF(NASM_BIN)
     355# NASMB uses NASM produce a .bin from a .nasmb NASM source file
     356*_*_*_NASMB_FLAGS              = -f bin -D__YASM__ -DASM_FORMAT_BIN
     357
Note: See TracChangeset for help on using the changeset viewer.

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