VirtualBox

Ignore:
Timestamp:
Sep 11, 2019 8:46:37 AM (5 years ago)
Author:
vboxsync
Message:

Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643

Location:
trunk/src/VBox/Devices/EFI/FirmwareNew
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/FirmwareNew

  • trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei/CdExpressPei.inf

    r77662 r80721  
    66# data, it will install Device Recovery Module PPI.
    77#
    8 # Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
     8# Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
    99#
    10 # This program and the accompanying materials
    11 # are licensed and made available under the terms and conditions
    12 # of the BSD License which accompanies this distribution.  The
    13 # full text of the license may be found at
    14 # http://opensource.org/licenses/bsd-license.php
    15 #
    16 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
    17 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     10# SPDX-License-Identifier: BSD-2-Clause-Patent
    1811#
    1912##
     
    3225# The following information is for reference only and not required by the build tools.
    3326#
    34 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
     27#  VALID_ARCHITECTURES           = IA32 X64 EBC
    3528#
    3629
     
    6659  gEfiPeiDeviceRecoveryModulePpiGuid            ## PRODUCES
    6760
    68 [FeaturePcd]
    69   gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport   ## CONSUMES
    70 
    7161[Pcd]
    7262  gEfiMdeModulePkgTokenSpaceGuid.PcdRecoveryFileName         ## CONSUMES
    7363
    7464[Depex]
    75   gEfiPeiMemoryDiscoveredPpiGuid AND gEfiPeiBootInRecoveryModePpiGuid
     65  gEfiPeiMemoryDiscoveredPpiGuid
    7666
    7767[UserExtensions.TianoCore."ExtraFiles"]
  • trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei/CdExpressPei.uni

    r77662 r80721  
    66// data, it will install Device Recovery Module PPI.
    77//
    8 // Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
     8// Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
    99//
    10 // This program and the accompanying materials
    11 // are licensed and made available under the terms and conditions
    12 // of the BSD License which accompanies this distribution.  The
    13 // full text of the license may be found at
    14 // http://opensource.org/licenses/bsd-license.php
    15 //
    16 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
    17 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     10// SPDX-License-Identifier: BSD-2-Clause-Patent
    1811//
    1912// **/
  • trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei/CdExpressPeiExtra.uni

    r77662 r80721  
    22// CdExpressPei Localized Strings and Content
    33//
    4 // Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>
     4// Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
    55//
    6 // This program and the accompanying materials
    7 // are licensed and made available under the terms and conditions
    8 // of the BSD License which accompanies this distribution.  The
    9 // full text of the license may be found at
    10 // http://opensource.org/licenses/bsd-license.php
    11 //
    12 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
    13 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     6// SPDX-License-Identifier: BSD-2-Clause-Patent
    147//
    158// **/
    169
    17 #string STR_PROPERTIES_MODULE_NAME 
    18 #language en-US 
     10#string STR_PROPERTIES_MODULE_NAME
     11#language en-US
    1912"CD PEI Module for Recovery"
    2013
  • trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei/PeiCdExpress.c

    r77662 r80721  
    22  Source file for CD recovery PEIM
    33
    4 Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
    5 
    6 This program and the accompanying materials
    7 are licensed and made available under the terms and conditions
    8 of the BSD License which accompanies this distribution.  The
    9 full text of the license may be found at
    10 http://opensource.org/licenses/bsd-license.php
    11 
    12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
    13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     4Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
     5
     6SPDX-License-Identifier: BSD-2-Clause-Patent
    147
    158**/
     
    595588  }
    596589
    597   if (FeaturePcdGet (PcdFrameworkCompatibilitySupport)) {
    598     CapsuleInstance = CapsuleInstance + 1;
    599   }
    600 
    601590  if ((CapsuleInstance == 0) || (CapsuleInstance > NumberRecoveryCapsules)) {
    602591    return EFI_NOT_FOUND;
     
    653642  if (EFI_ERROR (Status)) {
    654643    return Status;
    655   }
    656 
    657   if (FeaturePcdGet (PcdFrameworkCompatibilitySupport)) {
    658     CapsuleInstance = CapsuleInstance + 1;
    659644  }
    660645
  • trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei/PeiCdExpress.h

    r77662 r80721  
    22  Header file for CD recovery PEIM
    33
    4 Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
    5 
    6 This program and the accompanying materials
    7 are licensed and made available under the terms and conditions
    8 of the BSD License which accompanies this distribution.  The
    9 full text of the license may be found at
    10 http://opensource.org/licenses/bsd-license.php
    11 
    12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
    13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     4Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
     5
     6SPDX-License-Identifier: BSD-2-Clause-Patent
    147
    158**/
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