Changeset 80721 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei
- Timestamp:
- Sep 11, 2019 8:46:37 AM (5 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-129237 /vendor/edk2/current 103735-103757,103769-103776,129194-133213
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei/CdExpressPei.inf
r77662 r80721 6 6 # data, it will install Device Recovery Module PPI. 7 7 # 8 # Copyright (c) 2006 - 201 6, Intel Corporation. All rights reserved.<BR>8 # Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR> 9 9 # 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 18 11 # 19 12 ## … … 32 25 # The following information is for reference only and not required by the build tools. 33 26 # 34 # VALID_ARCHITECTURES = IA32 X64 IPFEBC27 # VALID_ARCHITECTURES = IA32 X64 EBC 35 28 # 36 29 … … 66 59 gEfiPeiDeviceRecoveryModulePpiGuid ## PRODUCES 67 60 68 [FeaturePcd]69 gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport ## CONSUMES70 71 61 [Pcd] 72 62 gEfiMdeModulePkgTokenSpaceGuid.PcdRecoveryFileName ## CONSUMES 73 63 74 64 [Depex] 75 gEfiPeiMemoryDiscoveredPpiGuid AND gEfiPeiBootInRecoveryModePpiGuid65 gEfiPeiMemoryDiscoveredPpiGuid 76 66 77 67 [UserExtensions.TianoCore."ExtraFiles"] -
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei/CdExpressPei.uni
r77662 r80721 6 6 // data, it will install Device Recovery Module PPI. 7 7 // 8 // Copyright (c) 2006 - 201 4, Intel Corporation. All rights reserved.<BR>8 // Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR> 9 9 // 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 18 11 // 19 12 // **/ -
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei/CdExpressPeiExtra.uni
r77662 r80721 2 2 // CdExpressPei Localized Strings and Content 3 3 // 4 // Copyright (c) 2013 - 201 4, Intel Corporation. All rights reserved.<BR>4 // Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR> 5 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. 6 // SPDX-License-Identifier: BSD-2-Clause-Patent 14 7 // 15 8 // **/ 16 9 17 #string STR_PROPERTIES_MODULE_NAME 18 #language en-US 10 #string STR_PROPERTIES_MODULE_NAME 11 #language en-US 19 12 "CD PEI Module for Recovery" 20 13 -
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei/PeiCdExpress.c
r77662 r80721 2 2 Source file for CD recovery PEIM 3 3 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. 4 Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR> 5 6 SPDX-License-Identifier: BSD-2-Clause-Patent 14 7 15 8 **/ … … 595 588 } 596 589 597 if (FeaturePcdGet (PcdFrameworkCompatibilitySupport)) {598 CapsuleInstance = CapsuleInstance + 1;599 }600 601 590 if ((CapsuleInstance == 0) || (CapsuleInstance > NumberRecoveryCapsules)) { 602 591 return EFI_NOT_FOUND; … … 653 642 if (EFI_ERROR (Status)) { 654 643 return Status; 655 }656 657 if (FeaturePcdGet (PcdFrameworkCompatibilitySupport)) {658 CapsuleInstance = CapsuleInstance + 1;659 644 } 660 645 -
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/Disk/CdExpressPei/PeiCdExpress.h
r77662 r80721 2 2 Header file for CD recovery PEIM 3 3 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. 4 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR> 5 6 SPDX-License-Identifier: BSD-2-Clause-Patent 14 7 15 8 **/
Note:
See TracChangeset
for help on using the changeset viewer.