2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-12-23 17:20:43 +01:00
|
|
|
# English module that provides Unicode Collation supports.
|
2008-04-08 06:46:45 +02:00
|
|
|
#
|
2008-12-23 17:20:43 +01:00
|
|
|
# This driver installs Unicode ISO 639-2 Collation and
|
|
|
|
# RFC 4646 Unicode Collation 2 protocols based on feature flags
|
|
|
|
# PcdUnicodeCollationSupport & PcdUnicodeCollation2Support respectively.
|
|
|
|
# It allows code running in the boot services environment to perform lexical
|
|
|
|
# comparison functions on Unicode strings for English languages.
|
2008-04-08 06:46:45 +02:00
|
|
|
#
|
2011-03-14 09:43:59 +01:00
|
|
|
# Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
2010-04-24 11:33:45 +02:00
|
|
|
# This program and the accompanying materials
|
2007-07-16 07:48:11 +02:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
2008-04-08 06:46:45 +02:00
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
2007-07-16 07:48:11 +02:00
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
2008-04-08 06:46:45 +02:00
|
|
|
#
|
2007-07-16 07:48:11 +02:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2008-04-08 06:46:45 +02:00
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-07-16 07:48:11 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = EnglishDxe
|
|
|
|
FILE_GUID = CD3BAFB6-50FB-4fe8-8E4E-AB74D2C1A600
|
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = InitializeUnicodeCollationEng
|
|
|
|
|
|
|
|
#
|
|
|
|
# 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]
|
2007-07-16 07:48:11 +02:00
|
|
|
UnicodeCollationEng.c
|
|
|
|
UnicodeCollationEng.h
|
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2007-10-09 05:11:08 +02:00
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2007-07-16 07:48:11 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
DebugLib
|
2007-10-09 05:11:08 +02:00
|
|
|
PcdLib
|
2007-07-16 07:48:11 +02:00
|
|
|
|
2007-10-09 05:11:08 +02:00
|
|
|
[FeaturePcd]
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollationSupport
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollation2Support
|
2007-07-16 07:48:11 +02:00
|
|
|
|
|
|
|
[Protocols]
|
2011-03-14 09:43:59 +01:00
|
|
|
gEfiUnicodeCollationProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollationSupport ## PRODUCES
|
|
|
|
gEfiUnicodeCollation2ProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollation2Support ## PRODUCES
|
2007-07-16 07:48:11 +02:00
|
|
|
|