diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-05-16 09:45:41 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-05-16 09:45:41 +0000 |
commit | 0d6945396d4918663afa1b3ef2af703e5d9a68f5 (patch) | |
tree | 43f901ec4ac45e6652ec79bf531df9e81dcc82c5 /EdkCompatibilityPkg/Compatibility | |
parent | 3e5b4527437d7b2e23c7cd4a38bc999f8a525711 (diff) | |
download | edk2-platforms-0d6945396d4918663afa1b3ef2af703e5d9a68f5.tar.xz |
Update Comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5215 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Compatibility')
-rw-r--r-- | EdkCompatibilityPkg/Compatibility/FvToFv2Thunk/FvToFv2Thunk.c | 17 | ||||
-rw-r--r-- | EdkCompatibilityPkg/Compatibility/FvToFv2Thunk/FvToFv2Thunk.inf | 13 |
2 files changed, 19 insertions, 11 deletions
diff --git a/EdkCompatibilityPkg/Compatibility/FvToFv2Thunk/FvToFv2Thunk.c b/EdkCompatibilityPkg/Compatibility/FvToFv2Thunk/FvToFv2Thunk.c index 61b2b049ca..27eb64aa0d 100644 --- a/EdkCompatibilityPkg/Compatibility/FvToFv2Thunk/FvToFv2Thunk.c +++ b/EdkCompatibilityPkg/Compatibility/FvToFv2Thunk/FvToFv2Thunk.c @@ -1,4 +1,11 @@ -/*++
+/** @file
+UEFI PI specification supersedes Inte's Framework Specification.
+EFI_FIRMWARE_VOLUME_PROTOCOL defined in Intel Framework Pkg is replaced by
+EFI_FIRMWARE_VOLUME2_PROTOCOL in MdePkg.
+This module produces FV on top of FV2. This module is used on platform when both of
+these two conditions are true:
+1) Framework module consuming FV is present
+2) And the platform only produces FV2
Copyright (c) 2006 - 2008 Intel Corporation. <BR>
All rights reserved. This program and the accompanying materials
@@ -10,13 +17,7 @@ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Module Name:
- FvToFv2Thunk.c
-
-Abstract:
-
- DXE driver
-
---*/
+**/
#include <PiDxe.h>
#include <Protocol/FirmwareVolume2.h>
diff --git a/EdkCompatibilityPkg/Compatibility/FvToFv2Thunk/FvToFv2Thunk.inf b/EdkCompatibilityPkg/Compatibility/FvToFv2Thunk/FvToFv2Thunk.inf index 8eaf4a2bcc..a7026bdeee 100644 --- a/EdkCompatibilityPkg/Compatibility/FvToFv2Thunk/FvToFv2Thunk.inf +++ b/EdkCompatibilityPkg/Compatibility/FvToFv2Thunk/FvToFv2Thunk.inf @@ -1,8 +1,15 @@ #/** @file
-# Component description file for PeiVariable module.
+# Module produce FV on top of FV2.
#
-# PEIM to provide the Variable functionality.
-# Copyright (c) 2006 - 2007, Intel Corporation
+# UEFI PI specification supersedes Inte's Framework Specification.
+# EFI_FIRMWARE_VOLUME_PROTOCOL defined in Intel Framework Pkg is replaced by
+# EFI_FIRMWARE_VOLUME2_PROTOCOL in MdePkg.
+# This module produces FV on top of FV2. This module is used on platform when both of
+# these two conditions are true:
+# 1) Framework module consuming FV is present
+# 2) And the platform only produces FV2
+#
+# Copyright (c) 2006 - 2008, Intel Corporation
#
# All rights reserved. This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
|