95 lines
3.0 KiB
INI
95 lines
3.0 KiB
INI
## @file
|
|
# Provides Unicode Collation supports.
|
|
#
|
|
#******************************************************************************
|
|
#* Copyright (c) 2020, Insyde Software Corp. All Rights Reserved.
|
|
#*
|
|
#* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
#* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
#* any part of this publication in any form, by any means, without the prior
|
|
#* written permission of Insyde Software Corporation.
|
|
#*
|
|
#******************************************************************************
|
|
|
|
## @file
|
|
# English module that provides Unicode Collation supports.
|
|
#
|
|
# 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.
|
|
#
|
|
# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = EnglishDxe
|
|
MODULE_UNI_FILE = EnglishDxe.uni
|
|
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 EBC
|
|
#
|
|
|
|
[Sources]
|
|
UnicodeCollationEng.c
|
|
UnicodeCollationEng.h
|
|
HiiSupport.c
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
InsydeModulePkg/InsydeModulePkg.dec
|
|
|
|
[LibraryClasses]
|
|
UefiBootServicesTableLib
|
|
UefiDriverEntryPoint
|
|
DebugLib
|
|
PcdLib
|
|
BaseLib
|
|
BaseMemoryLib
|
|
MemoryAllocationLib
|
|
HiiDbLib
|
|
HiiStringLib
|
|
HiiConfigAccessLib
|
|
VariableLib
|
|
|
|
[FeaturePcd]
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollationSupport ## CONSUMES
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollation2Support ## CONSUMES
|
|
|
|
[Pcd]
|
|
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangCodes
|
|
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang
|
|
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLangCodes
|
|
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
|
|
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDeprecate
|
|
|
|
[Guids]
|
|
gEfiGlobalVariableGuid
|
|
gH2OHiiFontFileGuid
|
|
|
|
[Protocols]
|
|
gEfiUnicodeCollationProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollationSupport ## SOMETIMES_PRODUCES
|
|
gEfiUnicodeCollation2ProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollation2Support ## PRODUCES
|
|
gEfiVariableWriteArchProtocolGuid
|
|
gEfiHiiDatabaseProtocolGuid
|
|
gEfiFontDatabaseProtocolGuid
|
|
gEfiFirmwareVolume2ProtocolGuid
|
|
|
|
[Depex]
|
|
gEfiVariableWriteArchProtocolGuid AND
|
|
gEfiHiiDatabaseProtocolGuid
|
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
EnglishDxeExtra.uni
|