summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShumin Qiu <shumin.qiu@intel.com>2013-08-22 01:01:27 +0000
committershenshushi <shenshushi@6f19259b-4bc3-4df7-8a09-765794883524>2013-08-22 01:01:27 +0000
commit7076ecdb6b13879495f202e7ba453bc8098b7f40 (patch)
tree389a78dd2c0deb4226f524c8f4d84abddf56be6a
parentdf07baea2f9d1e40bd8fb3e445286d231241023a (diff)
downloadedk2-7076ecdb6b13879495f202e7ba453bc8098b7f40.zip
edk2-7076ecdb6b13879495f202e7ba453bc8098b7f40.tar.gz
edk2-7076ecdb6b13879495f202e7ba453bc8098b7f40.tar.bz2
Update firmware management protocol definition to expose the lowest supported firmware version.
Signed-off-by: Shumin Qiu <shumin.qiu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14586 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--MdePkg/Include/Protocol/FirmwareManagement.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/MdePkg/Include/Protocol/FirmwareManagement.h b/MdePkg/Include/Protocol/FirmwareManagement.h
index 617b96a..ae84026 100644
--- a/MdePkg/Include/Protocol/FirmwareManagement.h
+++ b/MdePkg/Include/Protocol/FirmwareManagement.h
@@ -8,7 +8,7 @@
CheckImage(), GetPackageInfo(), and SetPackageInfo() shall return
EFI_UNSUPPORTED if not supported by the driver.
- Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2009 - 2013, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -85,6 +85,11 @@ typedef struct {
/// values of this parameter.
///
UINT64 Compatibilities;
+ ///
+ /// Describes the lowest ImageDescriptor version that the device will accept. Only
+ /// present in version 2 or higher.
+ ///
+ UINT32 LowestSupportedImageVersion;
} EFI_FIRMWARE_IMAGE_DESCRIPTOR;
@@ -127,7 +132,7 @@ typedef struct {
///
/// Descriptor Version
///
-#define EFI_FIRMWARE_IMAGE_DESCRIPTOR_VERSION 1
+#define EFI_FIRMWARE_IMAGE_DESCRIPTOR_VERSION 2
///