mirror of https://github.com/acidanthera/audk.git
Fix a typo in Pcd name
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5814 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e53a6ea90e
commit
ca65d1057a
|
@ -141,7 +141,7 @@
|
||||||
gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
||||||
|
|
||||||
[FeaturePcd.common]
|
[FeaturePcd.common]
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDepricate
|
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDeprecate
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdSupportHardwareErrorRecord
|
gEfiMdeModulePkgTokenSpaceGuid.PcdSupportHardwareErrorRecord
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdUgaConsumeSupport
|
gEfiMdeModulePkgTokenSpaceGuid.PcdUgaConsumeSupport
|
||||||
|
|
||||||
|
|
|
@ -179,7 +179,7 @@ FrontPageCallback (
|
||||||
Lang
|
Lang
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!FeaturePcdGet (PcdUefiVariableDefaultLangDepricate)) {
|
if (!FeaturePcdGet (PcdUefiVariableDefaultLangDeprecate)) {
|
||||||
//
|
//
|
||||||
// Set UEFI deprecated variable "Lang" for backwards compatibility
|
// Set UEFI deprecated variable "Lang" for backwards compatibility
|
||||||
//
|
//
|
||||||
|
|
|
@ -305,7 +305,7 @@ InitializeLanguage (
|
||||||
|
|
||||||
LangCodes = (CHAR8 *)PcdGetPtr (PcdUefiVariableDefaultLangCodes);
|
LangCodes = (CHAR8 *)PcdGetPtr (PcdUefiVariableDefaultLangCodes);
|
||||||
if (LangCodesSettingRequired) {
|
if (LangCodesSettingRequired) {
|
||||||
if (!FeaturePcdGet (PcdUefiVariableDefaultLangDepricate)) {
|
if (!FeaturePcdGet (PcdUefiVariableDefaultLangDeprecate)) {
|
||||||
//
|
//
|
||||||
// UEFI 2.1 depricated this variable so we support turning it off
|
// UEFI 2.1 depricated this variable so we support turning it off
|
||||||
//
|
//
|
||||||
|
@ -329,7 +329,7 @@ InitializeLanguage (
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!FeaturePcdGet (PcdUefiVariableDefaultLangDepricate)) {
|
if (!FeaturePcdGet (PcdUefiVariableDefaultLangDeprecate)) {
|
||||||
//
|
//
|
||||||
// UEFI 2.1 depricated this variable so we support turning it off
|
// UEFI 2.1 depricated this variable so we support turning it off
|
||||||
//
|
//
|
||||||
|
|
|
@ -293,7 +293,7 @@
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable|FALSE|BOOLEAN|0x0000000e
|
gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable|FALSE|BOOLEAN|0x0000000e
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable|FALSE|BOOLEAN|0x000000010
|
gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable|FALSE|BOOLEAN|0x000000010
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable|FALSE|BOOLEAN|0x00000011
|
gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable|FALSE|BOOLEAN|0x00000011
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDepricate|FALSE|BOOLEAN|0x00000012 # Indicates whether EFI 1.1 ISO 639-2 language supports are obsolete.
|
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDeprecate|FALSE|BOOLEAN|0x00000012 # Indicates whether EFI 1.1 ISO 639-2 language supports are obsolete.
|
||||||
|
|
||||||
[PcdsFixedAtBuild.common]
|
[PcdsFixedAtBuild.common]
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdMaximumUnicodeStringLength|1000000|UINT32|0x00000001
|
gEfiMdePkgTokenSpaceGuid.PcdMaximumUnicodeStringLength|1000000|UINT32|0x00000001
|
||||||
|
|
|
@ -213,6 +213,7 @@ INF Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIoDxe.inf
|
||||||
INF Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIoDxe.inf
|
INF Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIoDxe.inf
|
||||||
INF Nt32Pkg/WinNtGopDxe/WinNtGopDxe.inf
|
INF Nt32Pkg/WinNtGopDxe/WinNtGopDxe.inf
|
||||||
INF Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystemDxe.inf
|
INF Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystemDxe.inf
|
||||||
|
INF Nt32Pkg/SetupDxe/SetupDxe.inf
|
||||||
INF MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
|
INF MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
|
||||||
INF MdeModulePkg/Application/HelloWorld/HelloWorld.inf
|
INF MdeModulePkg/Application/HelloWorld/HelloWorld.inf
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue