Revision: 19263
http://sourceforge.net/p/edk2/code/19263
Author: jljusten
Date: 2015-12-15 04:58:48 +0000 (Tue, 15 Dec 2015)
Log Message:
-----------
SourceLevelDebugPkg: Convert all .uni files to utf-8
To convert these files I ran:
$ python3 BaseTools/Scripts/ConvertUni.py SourceLevelDebugPkg
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Michael Kinney <[email protected]>
Reviewed-by: Jeff Fan <[email protected]>
Modified Paths:
--------------
trunk/edk2/SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxe.uni
trunk/edk2/SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxeExtra.uni
trunk/edk2/SourceLevelDebugPkg/DebugAgentPei/DebugAgentPei.uni
trunk/edk2/SourceLevelDebugPkg/DebugAgentPei/DebugAgentPeiExtra.uni
trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.uni
trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.uni
trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.uni
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.uni
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.uni
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Dxe.uni
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Pei.uni
trunk/edk2/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLib.uni
trunk/edk2/SourceLevelDebugPkg/SourceLevelDebugPkg.uni
trunk/edk2/SourceLevelDebugPkg/SourceLevelDebugPkgExtra.uni
Modified: trunk/edk2/SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxe.uni
===================================================================
--- trunk/edk2/SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxe.uni
2015-12-15 04:58:32 UTC (rev 19262)
+++ trunk/edk2/SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxe.uni
2015-12-15 04:58:48 UTC (rev 19263)
@@ -1,45 +1,22 @@
-\xFF\xFE/----------------------\ No newline at end of file
+// /** @file
+// Initialized Debug Agent in one separated DXE driver.
+//
+// This DXE driver will invoke Debug Agent Library to initialize the debug
agent.
+//
+// Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials
+// 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.
+//
+// **/
+
+
+#string STR_MODULE_ABSTRACT #language en-US "Initialized Debug
Agent in one separated DXE driver"
+
+#string STR_MODULE_DESCRIPTION #language en-US "This DXE driver will
invoke Debug Agent Library to initialize the debug agent."
+
Modified: trunk/edk2/SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxeExtra.uni
===================================================================
--- trunk/edk2/SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxeExtra.uni
2015-12-15 04:58:32 UTC (rev 19262)
+++ trunk/edk2/SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxeExtra.uni
2015-12-15 04:58:48 UTC (rev 19263)
@@ -1,41 +1,20 @@
-\xFF\xFE/--------------------\ No newline at end of file
+// /** @file
+// DebugAgentDxe Localized Strings and Content
+//
+// Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials
+// 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.
+//
+// **/
+
+#string STR_PROPERTIES_MODULE_NAME
+#language en-US
+"Debug Agent DXE Driver"
+
+
Modified: trunk/edk2/SourceLevelDebugPkg/DebugAgentPei/DebugAgentPei.uni
===================================================================
--- trunk/edk2/SourceLevelDebugPkg/DebugAgentPei/DebugAgentPei.uni
2015-12-15 04:58:32 UTC (rev 19262)
+++ trunk/edk2/SourceLevelDebugPkg/DebugAgentPei/DebugAgentPei.uni
2015-12-15 04:58:48 UTC (rev 19263)
@@ -1,47 +1,23 @@
-\xFF\xFE/-----------------------\ No newline at end of file
+// /** @file
+// Initialized Debug Agent in PEI phase.
+//
+// This PEIM will invoke Debug Agent Library to initialize the debug agent in
+// whole PEI phase.
+//
+// Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials
+// 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.
+//
+// **/
+
+
+#string STR_MODULE_ABSTRACT #language en-US "Initialized Debug
Agent in PEI phase"
+
+#string STR_MODULE_DESCRIPTION #language en-US "This PEIM will invoke
Debug Agent Library to initialize the debug agent throughout the whole PEI
phase."
+
Modified: trunk/edk2/SourceLevelDebugPkg/DebugAgentPei/DebugAgentPeiExtra.uni
===================================================================
--- trunk/edk2/SourceLevelDebugPkg/DebugAgentPei/DebugAgentPeiExtra.uni
2015-12-15 04:58:32 UTC (rev 19262)
+++ trunk/edk2/SourceLevelDebugPkg/DebugAgentPei/DebugAgentPeiExtra.uni
2015-12-15 04:58:48 UTC (rev 19263)
@@ -1,41 +1,20 @@
-\xFF\xFE/--------------------\ No newline at end of file
+// /** @file
+// DebugAgentPei Localized Strings and Content
+//
+// Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials
+// 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.
+//
+// **/
+
+#string STR_PROPERTIES_MODULE_NAME
+#language en-US
+"Debug Agent PEI Module"
+
+
Modified: trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.uni
===================================================================
--- trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.uni
2015-12-15 04:58:32 UTC (rev 19262)
+++ trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.uni
2015-12-15 04:58:48 UTC (rev 19263)
@@ -1,43 +1,21 @@
-\xFF\xFE/---------------------\ No newline at end of file
+// /** @file
+// Debug Agent library instance for Dxe Core and Dxe modules.
+//
+// Debug Agent library instance for DXE Core and DXE modules.
+//
+// Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials
+// 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.
+//
+// **/
+
+
+#string STR_MODULE_ABSTRACT #language en-US "Debug Agent library
instance for DXE Core and DXE modules"
+
+#string STR_MODULE_DESCRIPTION #language en-US "Debug Agent library
instance for DXE Core and DXE modules."
+
Modified:
trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.uni
===================================================================
--- trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.uni
2015-12-15 04:58:32 UTC (rev 19262)
+++ trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.uni
2015-12-15 04:58:48 UTC (rev 19263)
@@ -1,43 +1,21 @@
-\xFF\xFE/---------------------\ No newline at end of file
+// /** @file
+// Debug Agent library instance for SEC Core and PEI modules.
+//
+// Debug Agent library instance for SEC Core and PEI modules.
+//
+// Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials
+// 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.
+//
+// **/
+
+
+#string STR_MODULE_ABSTRACT #language en-US "Debug Agent library
instance for SEC Core and PEI modules"
+
+#string STR_MODULE_DESCRIPTION #language en-US "Debug Agent library
instance for SEC Core and PEI modules."
+
Modified: trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.uni
===================================================================
--- trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.uni
2015-12-15 04:58:32 UTC (rev 19262)
+++ trunk/edk2/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.uni
2015-12-15 04:58:48 UTC (rev 19263)
@@ -1,43 +1,21 @@
-\xFF\xFE/---------------------\ No newline at end of file
+// /** @file
+// Debug Agent library instance for SMM modules.
+//
+// Debug Agent library instance for SMM modules.
+//
+// Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials
+// 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.
+//
+// **/
+
+
+#string STR_MODULE_ABSTRACT #language en-US "Debug Agent library
instance for SMM modules"
+
+#string STR_MODULE_DESCRIPTION #language en-US "Debug Agent library
instance for SMM modules."
+
Modified:
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.uni
===================================================================
---
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.uni
2015-12-15 04:58:32 UTC (rev 19262)
+++
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.uni
2015-12-15 04:58:48 UTC (rev 19263)
@@ -1,43 +1,21 @@
-\xFF\xFE/---------------------\ No newline at end of file
+// /** @file
+// Debug Communication Library instance based on serila port.
+//
+// Debug Communication Library instance based on serial port.
+//
+// Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials
+// 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.
+//
+// **/
+
+
+#string STR_MODULE_ABSTRACT #language en-US "Debug Communication
Library instance based on serial port"
+
+#string STR_MODULE_DESCRIPTION #language en-US "Debug Communication
Library instance based on serial port."
+
Modified:
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.uni
===================================================================
---
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.uni
2015-12-15 04:58:32 UTC (rev 19262)
+++
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.uni
2015-12-15 04:58:48 UTC (rev 19263)
@@ -1,43 +1,21 @@
-\xFF\xFE/---------------------\ No newline at end of file
+// /** @file
+// Debug Communication Library instance based on usb debug port.
+//
+// Debug Communication Library instance based on USB debug port.
+//
+// Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials
+// 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.
+//
+// **/
+
+
+#string STR_MODULE_ABSTRACT #language en-US "Debug Communication
Library instance based on USB debug port"
+
+#string STR_MODULE_DESCRIPTION #language en-US "Debug Communication
Library instance based on USB debug port."
+
Modified:
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Dxe.uni
===================================================================
(Binary files differ)
Modified:
trunk/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Pei.uni
===================================================================
(Binary files differ)
Modified:
trunk/edk2/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLib.uni
===================================================================
---
trunk/edk2/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLib.uni
2015-12-15 04:58:32 UTC (rev 19262)
+++
trunk/edk2/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLib.uni
2015-12-15 04:58:48 UTC (rev 19263)
@@ -1,43 +1,21 @@
-\xFF\xFE/---------------------\ No newline at end of file
+// /** @file
+// PeCoffExtraAction Library to support source level debug.
+//
+// PeCoffExtraAction Library to support source level debug.
+//
+// Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials
+// 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.
+//
+// **/
+
+
+#string STR_MODULE_ABSTRACT #language en-US "PeCoffExtraAction
Library to support source level debug"
+
+#string STR_MODULE_DESCRIPTION #language en-US "PeCoffExtraAction
Library to support source level debug."
+
Modified: trunk/edk2/SourceLevelDebugPkg/SourceLevelDebugPkg.uni
===================================================================
--- trunk/edk2/SourceLevelDebugPkg/SourceLevelDebugPkg.uni 2015-12-15
04:58:32 UTC (rev 19262)
+++ trunk/edk2/SourceLevelDebugPkg/SourceLevelDebugPkg.uni 2015-12-15
04:58:48 UTC (rev 19263)
@@ -1,187 +1,93 @@
-\xFF\xFE/---------------------------------------------------------------------------------------------\
No newline at end of file
+// /** @file
+// This package provides target side modules to support source level debug.
+//
+// This package provides target side modules to support source level debug.
+// The target side components includes the Debug Agent Library instance
+// to communicate with host side modules, Debug Communication Library and
+// instances to provide the communication I/O functions between Debug Agent
+// and host, PeCoffExtraActionLib instance to report symbol path information,
+// etc.
+//
+// Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials are licensed and made available
under
+// the terms and conditions of the BSD License that 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.
+//
+// **/
+
+
+#string STR_PACKAGE_ABSTRACT #language en-US "This package provides
target side modules to support source level debug."
+
+#string STR_PACKAGE_DESCRIPTION #language en-US "The target side
components includes the Debug Agent Library instance\n"
+ "to communicate with
host side modules, Debug Communication Library and\n"
+ "instances to provide
the communication I/O functions between Debug Agent\n"
+ "and host,
PeCoffExtraActionLib instance to report symbol path information,\n"
+ "etc."
+
+
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbDebugPortMemorySpaceBase_PROMPT
#language en-US "Configure USB debug port memory BAR"
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbDebugPortMemorySpaceBase_HELP
#language en-US "The memory BAR of USB debug port, it may be different from the
memory BAR of EHCI host controller.<BR>\n"
+
"Note that the memory BAR address is only used before
PCI bus resource allocation."
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbEhciMemorySpaceBase_PROMPT
#language en-US "Configure EHCI host controller memory BAR"
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbEhciMemorySpaceBase_HELP
#language en-US "The memory BAR of EHCI host controller, in which USB debug
feature is enabled.<BR>\n"
+
"Note that the memory BAR address is only used before PCI
bus resource allocation."
+
+#string STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbEhciPciAddress_PROMPT
#language en-US "Configure EHCI host controller PCI address"
+
+#string STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbEhciPciAddress_HELP
#language en-US "The PCI address of EHCI host controller, in which USB debug
feature is enabled.<BR>\n"
+
"The format of PCI address is :<BR>\n"
+
"-----------------------------------------------------------------------<BR>\n"
+
"| Bits 28..31 | Bits 20..27 | Bits 15..19 | Bits 12..14 | Bits
00..11 |<BR>\n"
+
"-----------------------------------------------------------------------<BR>\n"
+
"| 0 | Bus | Device | Function | 0
|<BR>\n"
+
"-----------------------------------------------------------------------<BR>\n"
+
"For the value 0x000EF000, it means the PCI address at bus 0x0,
device 0x1D, function 0x7."
+
+#string STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_ERR_80000001 #language en-US
"Invalid value provided."
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdExceptionsIgnoredByDebugger_PROMPT
#language en-US "Configure exception numbers not to be hooked by Debug Agent"
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdExceptionsIgnoredByDebugger_HELP
#language en-US "The mask of exception numbers whose handlers would be ignored
and cannot be replaced or\n"
+
"hooked by Debug Agent Library. Masking INT1/INT3 is
invalid."
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdDebugLoadImageMethod_PROMPT
#language en-US "Select loading/unloading image break method"
+
+#string STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdDebugLoadImageMethod_HELP
#language en-US "The method to issue break point to Debug Agent Library when
loading/unloading image.<BR><BR>\n"
+
"1: Use I/O Port 84 to issue hardware break point<BR>\n"
+
"2: Use INT3 to issue software break point<BR>"
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdDebugPortHandleBufferSize_PROMPT
#language en-US "Assign debug port buffer size"
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdDebugPortHandleBufferSize_HELP
#language en-US "The data buffer size used by debug port in debug communication
library instances.\n"
+
"Its value is not suggested to be changed in platform DSC
file."
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbXhciMemorySpaceBase_PROMPT
#language en-US "Configure ehci host controller memory BAR."
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbXhciMemorySpaceBase_HELP
#language en-US "The memory BAR of xhci host controller, in which usb debug
feature is enabled.\n"
+
"Note that the memory BAR address is only used before Pci
bus resource allocation."
+
+#string STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbXhciPciAddress_PROMPT
#language en-US "Configure xhci host controller pci address."
+
+#string STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbXhciPciAddress_HELP
#language en-US "The pci address of xhci host controller, in which usb debug
feature is enabled.\n"
+
"The format of pci address is :<BR>\n"
+
"-----------------------------------------------------------------------<BR>\n"
+
"| Bits 28..31 | Bits 20..27 | Bits 15..19 | Bits 12..14 | Bits
00..11 |<BR>\n"
+
"-----------------------------------------------------------------------<BR>\n"
+
"| 0 | Bus | Device | Function | 0
|<BR>\n"
+
"-----------------------------------------------------------------------<BR>\n"
+
"For the value 0x000A0000, it means the pci address at bus 0x0,
device 0x14, function 0x0."
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbXhciDebugDetectTimeout_PROMPT
#language en-US "Configure debug device detection timeout value."
+
+#string
STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbXhciDebugDetectTimeout_HELP
#language en-US "Per XHCI spec, software shall impose a timeout between the
detection of the Debug Host\n"
+
"connection and the DbC Run transition to 1. This PCD
specifies the timeout value in microsecond."
+
Modified: trunk/edk2/SourceLevelDebugPkg/SourceLevelDebugPkgExtra.uni
===================================================================
--- trunk/edk2/SourceLevelDebugPkg/SourceLevelDebugPkgExtra.uni 2015-12-15
04:58:32 UTC (rev 19262)
+++ trunk/edk2/SourceLevelDebugPkg/SourceLevelDebugPkgExtra.uni 2015-12-15
04:58:48 UTC (rev 19263)
@@ -1,37 +1,18 @@
-\xFF\xFE/------------------\ No newline at end of file
+// /** @file
+// SourceLevelDebug Package Localized Strings and Content.
+//
+// Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>
+//
+// This program and the accompanying materials are licensed and made available
under
+// the terms and conditions of the BSD License that 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.
+//
+// **/
+
+#string STR_PROPERTIES_PACKAGE_NAME
+#language en-US
+"SourceLevelDebug package"
------------------------------------------------------------------------------
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits