2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-05-19 11:37:05 +02:00
|
|
|
# Module produce UC2 on top of UC.
|
|
|
|
#
|
|
|
|
# UEFI 2.1 specification supersedes Inte's EFI Specification 1.10.
|
2008-05-20 03:40:17 +02:00
|
|
|
# UNICODE_COLLATION_PROTOCOL defined in Inte's EFI Specification 1.10 is replaced by
|
2008-05-19 11:37:05 +02:00
|
|
|
# EFI_UNICODE_COLLATION_PROTOCOL in UEFI 2.1.
|
|
|
|
# This module produces UC2 on top of UC. This module is used on platform when both of
|
|
|
|
# these two conditions are true:
|
|
|
|
# 1) EFI 1.10 module producing UC present
|
|
|
|
# 2) And the rest of modules on the platform consume UC2
|
|
|
|
#
|
2010-04-24 11:48:54 +02:00
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
2008-05-19 11:37:05 +02:00
|
|
|
#
|
2010-04-24 11:48:54 +02:00
|
|
|
# This program and the accompanying materials
|
2008-05-19 11:37:05 +02:00
|
|
|
# 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
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2008-05-19 11:37:05 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
2009-01-21 11:10:55 +01:00
|
|
|
BASE_NAME = Uc2OnUcThunk
|
2008-05-19 11:37:05 +02:00
|
|
|
FILE_GUID = 69282DF3-778F-4269-91AA-D7DF6E193317
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = InitializeUC2
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2009-01-21 11:10:55 +01:00
|
|
|
Uc2OnUcThunk.c
|
2008-05-19 11:37:05 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2008-11-18 02:12:28 +01:00
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2008-05-19 11:37:05 +02:00
|
|
|
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
2009-05-08 03:51:35 +02:00
|
|
|
EdkCompatibilityPkg/EdkCompatibilityPkg.dec
|
2008-05-19 11:37:05 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
BaseLib
|
|
|
|
DebugLib
|
|
|
|
UefiLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
HiiLib
|
2009-04-16 10:46:28 +02:00
|
|
|
BaseMemoryLib
|
2009-05-08 03:51:35 +02:00
|
|
|
LanguageLib
|
2008-05-19 11:37:05 +02:00
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiUnicodeCollation2ProtocolGuid
|
|
|
|
gEfiUnicodeCollationProtocolGuid
|
|
|
|
|
|
|
|
[Depex]
|
|
|
|
TRUE
|