Changeset 80721 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/OvmfPkg/Library/LockBoxLib
- Timestamp:
- Sep 11, 2019 8:46:37 AM (5 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 7 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/OvmfPkg/Library/LockBoxLib/LockBoxBase.c
r58464 r80721 3 3 Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 4 4 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php. 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 5 SPDX-License-Identifier: BSD-2-Clause-Patent 12 6 13 7 **/ -
trunk/src/VBox/Devices/EFI/FirmwareNew/OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf
r77662 r80721 6 6 # Copyright (c) 2014, Intel Corporation. All rights reserved.<BR> 7 7 # 8 # This program and the accompanying materials are licensed and made available 9 # under the terms and conditions of the BSD License which accompanies this 10 # distribution. The full text of the license may be found at 11 # http://opensource.org/licenses/bsd-license.php 12 # 13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR 15 # IMPLIED. 8 # SPDX-License-Identifier: BSD-2-Clause-Patent 16 9 # 17 10 ## … … 30 23 LockBoxBase.c 31 24 LockBoxLib.c 25 LockBoxLib.h 32 26 33 27 [Packages] -
trunk/src/VBox/Devices/EFI/FirmwareNew/OvmfPkg/Library/LockBoxLib/LockBoxDxe.c
r77662 r80721 3 3 Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR> 4 4 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php. 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 5 SPDX-License-Identifier: BSD-2-Clause-Patent 12 6 13 7 **/ -
trunk/src/VBox/Devices/EFI/FirmwareNew/OvmfPkg/Library/LockBoxLib/LockBoxDxeLib.inf
r77662 r80721 6 6 # Copyright (c) 2014 - 2016, Intel Corporation. All rights reserved.<BR> 7 7 # 8 # This program and the accompanying materials are licensed and made available 9 # under the terms and conditions of the BSD License which accompanies this 10 # distribution. The full text of the license may be found at 11 # http://opensource.org/licenses/bsd-license.php 12 # 13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR 15 # IMPLIED. 8 # SPDX-License-Identifier: BSD-2-Clause-Patent 16 9 # 17 10 ## … … 30 23 LockBoxDxe.c 31 24 LockBoxLib.c 25 LockBoxLib.h 32 26 33 27 [Packages] -
trunk/src/VBox/Devices/EFI/FirmwareNew/OvmfPkg/Library/LockBoxLib/LockBoxLib.c
r77662 r80721 4 4 5 5 Copyright (C) 2013, Red Hat, Inc. 6 Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR> 7 8 This program and the accompanying materials are licensed and made available 9 under the terms and conditions of the BSD License which accompanies this 10 distribution. The full text of the license may be found at 11 http://opensource.org/licenses/bsd-license.php 12 13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT 14 WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 6 Copyright (c) 2010 - 2019, Intel Corporation. All rights reserved.<BR> 7 8 SPDX-License-Identifier: BSD-2-Clause-Patent 15 9 16 10 **/ … … 225 219 Length is 0. 226 220 @retval RETURN_NOT_FOUND the requested GUID not found. 227 @retval RETURN_BUFFER_TOO_SMALL the original buffer to too small to hold 228 new information. 221 @retval RETURN_BUFFER_TOO_SMALL for lockbox without attribute 222 LOCK_BOX_ATTRIBUTE_RESTORE_IN_S3_ONLY, the 223 original buffer to too small to hold new 224 information. 225 @retval RETURN_OUT_OF_RESOURCES for lockbox with attribute 226 LOCK_BOX_ATTRIBUTE_RESTORE_IN_S3_ONLY, no 227 enough resource to save the information. 229 228 @retval RETURN_ACCESS_DENIED it is too late to invoke this interface 230 229 @retval RETURN_NOT_STARTED it is too early to invoke this interface -
trunk/src/VBox/Devices/EFI/FirmwareNew/OvmfPkg/Library/LockBoxLib/LockBoxLib.h
r58466 r80721 3 3 Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 4 4 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 5 SPDX-License-Identifier: BSD-2-Clause-Patent 12 6 13 7 **/
Note:
See TracChangeset
for help on using the changeset viewer.