public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH 0/9] Various line ending and encoding fixes
@ 2019-09-18 22:43 Leif Lindholm
  2019-09-18 22:43 ` [PATCH 1/9] BaseTools: add missing newlines at end of files Leif Lindholm
                   ` (10 more replies)
  0 siblings, 11 replies; 19+ messages in thread
From: Leif Lindholm @ 2019-09-18 22:43 UTC (permalink / raw)
  To: devel
  Cc: Alexei Fedorov, Ard Biesheuvel, Bob Feng, Jiaxin Wu, Liming Gao,
	Sami Mujawar, Siyuan Fu

I have started looking into doing the CRLF->native conversion for EDK2,
and as part of my initial scan, I found a bunch of trivial issues that
would be easier to just fix beforehand.

Leif Lindholm (9):
  BaseTools: add missing newlines at end of files
  EmbeddedPkg: add missing newline at end of TemplateResetSystemLib.inf
  NetworkPkg: add missing newline at end of file
  EmbeddedPkg: delete outdated FdtLib README.txt
  BaseTools: fix line endings in SetupGit.py Conf files
  DynamicTablesPkg: fix .dsc line ending
  ArmPkg: ArmScmiDxe - convert .h to UTF-8 from 8859-x
  BaseTools: correct line endings for ConvertFce Python script
  EmbeddedPkg: convert Lauterbach README.txt to UTF-8

 ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h           |  2 +-
 BaseTools/Conf/diff.order                                               |  2 +-
 BaseTools/Conf/gitattributes                                            |  2 +-
 BaseTools/Scripts/ConvertFceToStructurePcd.py                           | 10 +++++-----
 BaseTools/Source/Python/AutoGen/DataPipe.py                             |  2 +-
 BaseTools/Source/Python/Common/DataType.py                              |  2 +-
 BaseTools/Source/Python/Common/GlobalData.py                            |  2 +-
 DynamicTablesPkg/DynamicTablesPkg.dsc                                   |  2 +-
 EmbeddedPkg/Library/FdtLib/README.txt                                   |  1 -
 EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.inf   |  2 +-
 EmbeddedPkg/Scripts/LauterbachT32/README.txt                            |  4 ++--
 NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.uni |  2 +-
 12 files changed, 16 insertions(+), 17 deletions(-)
 delete mode 100644 EmbeddedPkg/Library/FdtLib/README.txt

Cc: Alexei Fedorov <Alexei.Fedorov@arm.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Jiaxin Wu <jiaxin.wu@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Sami Mujawar <Sami.Mujawar@arm.com>
Cc: Siyuan Fu <siyuan.fu@intel.com>
-- 
2.20.1


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [PATCH 1/9] BaseTools: add missing newlines at end of files
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
@ 2019-09-18 22:43 ` Leif Lindholm
  2019-09-19  2:50   ` Bob Feng
  2019-09-18 22:43 ` [PATCH 2/9] EmbeddedPkg: add missing newline at end of TemplateResetSystemLib.inf Leif Lindholm
                   ` (9 subsequent siblings)
  10 siblings, 1 reply; 19+ messages in thread
From: Leif Lindholm @ 2019-09-18 22:43 UTC (permalink / raw)
  To: devel; +Cc: Bob Feng, Liming Gao

Some scripts in Source/Python were missing newlines at end of files,
so add them.

Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 BaseTools/Source/Python/AutoGen/DataPipe.py  | 2 +-
 BaseTools/Source/Python/Common/DataType.py   | 2 +-
 BaseTools/Source/Python/Common/GlobalData.py | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/BaseTools/Source/Python/AutoGen/DataPipe.py b/BaseTools/Source/Python/AutoGen/DataPipe.py
index 8b8cfd1c51eb..078bafecb45b 100755
--- a/BaseTools/Source/Python/AutoGen/DataPipe.py
+++ b/BaseTools/Source/Python/AutoGen/DataPipe.py
@@ -163,4 +163,4 @@ class MemoryDataPipe(DataPipe):
 
         self.DataContainer = {"BinCacheDest":GlobalData.gBinCacheDest}
 
-        self.DataContainer = {"EnableGenfdsMultiThread":GlobalData.gEnableGenfdsMultiThread}
\ No newline at end of file
+        self.DataContainer = {"EnableGenfdsMultiThread":GlobalData.gEnableGenfdsMultiThread}
diff --git a/BaseTools/Source/Python/Common/DataType.py b/BaseTools/Source/Python/Common/DataType.py
index 8ae1bd28fabf..5d49afb0a92a 100644
--- a/BaseTools/Source/Python/Common/DataType.py
+++ b/BaseTools/Source/Python/Common/DataType.py
@@ -532,4 +532,4 @@ PACK_CODE_BY_SIZE = {8:'=Q',
                      0:'=B',
                     16:""}
 
-TAB_COMPILER_MSFT = 'MSFT'
\ No newline at end of file
+TAB_COMPILER_MSFT = 'MSFT'
diff --git a/BaseTools/Source/Python/Common/GlobalData.py b/BaseTools/Source/Python/Common/GlobalData.py
index 8eb72aa1d6f5..74c6d0079bba 100755
--- a/BaseTools/Source/Python/Common/GlobalData.py
+++ b/BaseTools/Source/Python/Common/GlobalData.py
@@ -129,4 +129,4 @@ file_lock = None
 # Common dictionary to share platform libraries' constant Pcd
 libConstPcd = None
 # Common dictionary to share platform libraries' reference info
-Refes = None
\ No newline at end of file
+Refes = None
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 2/9] EmbeddedPkg: add missing newline at end of TemplateResetSystemLib.inf
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
  2019-09-18 22:43 ` [PATCH 1/9] BaseTools: add missing newlines at end of files Leif Lindholm
@ 2019-09-18 22:43 ` Leif Lindholm
  2019-09-18 22:43 ` [PATCH 3/9] NetworkPkg: add missing newline at end of file Leif Lindholm
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Leif Lindholm @ 2019-09-18 22:43 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel

Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.inf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.inf b/EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.inf
index 434f4ef298c7..cd7a9f845d53 100644
--- a/EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.inf
+++ b/EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.inf
@@ -27,4 +27,4 @@ [Packages]
 
 [LibraryClasses]
   IoLib
-  DebugLib
\ No newline at end of file
+  DebugLib
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 3/9] NetworkPkg: add missing newline at end of file
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
  2019-09-18 22:43 ` [PATCH 1/9] BaseTools: add missing newlines at end of files Leif Lindholm
  2019-09-18 22:43 ` [PATCH 2/9] EmbeddedPkg: add missing newline at end of TemplateResetSystemLib.inf Leif Lindholm
@ 2019-09-18 22:43 ` Leif Lindholm
  2019-09-18 23:53   ` Siyuan, Fu
  2019-09-18 22:43 ` [PATCH 4/9] EmbeddedPkg: delete outdated FdtLib README.txt Leif Lindholm
                   ` (7 subsequent siblings)
  10 siblings, 1 reply; 19+ messages in thread
From: Leif Lindholm @ 2019-09-18 22:43 UTC (permalink / raw)
  To: devel; +Cc: Siyuan Fu, Jiaxin Wu

Add missing newline at end of WifiConnectionManagerDxe .uni.

Cc: Siyuan Fu <siyuan.fu@intel.com>
Cc: Jiaxin Wu <jiaxin.wu@intel.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.uni | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.uni b/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.uni
index 3f2b068fb827..187e5047aa9c 100644
--- a/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.uni
+++ b/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.uni
@@ -100,4 +100,4 @@
 #string STR_ADD_HIDDEN_NETWORK                #language en-US "Add Hidden Network"
 #string STR_HIDDEN_NETWORK_LIST               #language en-US "Hidden Network List"
 #string STR_REMOVE_HIDDEN_NETWORK_HELP        #language en-US ""
-#string STR_REMOVE_HIDDEN_NETWORK             #language en-US "Remove Hidden Network"
\ No newline at end of file
+#string STR_REMOVE_HIDDEN_NETWORK             #language en-US "Remove Hidden Network"
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 4/9] EmbeddedPkg: delete outdated FdtLib README.txt
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
                   ` (2 preceding siblings ...)
  2019-09-18 22:43 ` [PATCH 3/9] NetworkPkg: add missing newline at end of file Leif Lindholm
@ 2019-09-18 22:43 ` Leif Lindholm
  2019-09-18 22:43 ` [PATCH 5/9] BaseTools: fix line endings in SetupGit.py Conf files Leif Lindholm
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Leif Lindholm @ 2019-09-18 22:43 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel

While looking at encoding and line ending errors, I found this file
in fact simply points to a sourceforge page which no longer exists.
Since there is nothing more to say than "this is an import of
libfdt", let's just delete it.

Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 EmbeddedPkg/Library/FdtLib/README.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/EmbeddedPkg/Library/FdtLib/README.txt b/EmbeddedPkg/Library/FdtLib/README.txt
deleted file mode 100644
index fb4010539f73..000000000000
--- a/EmbeddedPkg/Library/FdtLib/README.txt
+++ /dev/null
@@ -1 +0,0 @@
-See: https://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EmbeddedPkg/Fdt
\ No newline at end of file
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 5/9] BaseTools: fix line endings in SetupGit.py Conf files
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
                   ` (3 preceding siblings ...)
  2019-09-18 22:43 ` [PATCH 4/9] EmbeddedPkg: delete outdated FdtLib README.txt Leif Lindholm
@ 2019-09-18 22:43 ` Leif Lindholm
  2019-09-19  2:51   ` [edk2-devel] " Bob Feng
  2019-09-18 22:43 ` [PATCH 6/9] DynamicTablesPkg: fix .dsc line ending Leif Lindholm
                   ` (5 subsequent siblings)
  10 siblings, 1 reply; 19+ messages in thread
From: Leif Lindholm @ 2019-09-18 22:43 UTC (permalink / raw)
  To: devel; +Cc: Bob Feng, Liming Gao

A file header license/copyright header copied around in commit
5b3e695d8ac5 ("BaseTools: add centralized location for git config files")
was missing a CR - add it in both faulty locations.

Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 BaseTools/Conf/diff.order    | 2 +-
 BaseTools/Conf/gitattributes | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/BaseTools/Conf/diff.order b/BaseTools/Conf/diff.order
index 68b926ca94aa..4361817012c9 100644
--- a/BaseTools/Conf/diff.order
+++ b/BaseTools/Conf/diff.order
@@ -2,7 +2,7 @@
 # Copyright (c) 2019, Linaro Ltd. All rights reserved.
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent
-#
+#
 *.dec
 *.dsc.inc
 *.dsc
diff --git a/BaseTools/Conf/gitattributes b/BaseTools/Conf/gitattributes
index 9b6ab81a475b..58b93e9d4c27 100644
--- a/BaseTools/Conf/gitattributes
+++ b/BaseTools/Conf/gitattributes
@@ -2,7 +2,7 @@
 # Copyright (c) 2019, Linaro Ltd. All rights reserved.
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent
-#
+#
 *.efi     -diff
 *.EFI     -diff
 *.bin     -diff
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 6/9] DynamicTablesPkg: fix .dsc line ending
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
                   ` (4 preceding siblings ...)
  2019-09-18 22:43 ` [PATCH 5/9] BaseTools: fix line endings in SetupGit.py Conf files Leif Lindholm
@ 2019-09-18 22:43 ` Leif Lindholm
  2019-09-19  7:41   ` Sami Mujawar
  2019-09-18 22:43 ` [PATCH 7/9] ArmPkg: ArmScmiDxe - convert .h to UTF-8 from 8859-x Leif Lindholm
                   ` (4 subsequent siblings)
  10 siblings, 1 reply; 19+ messages in thread
From: Leif Lindholm @ 2019-09-18 22:43 UTC (permalink / raw)
  To: devel; +Cc: Sami Mujawar, Alexei Fedorov

Correct line ending in package .dsc.

Cc: Sami Mujawar <Sami.Mujawar@arm.com>
Cc: Alexei Fedorov <Alexei.Fedorov@arm.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 DynamicTablesPkg/DynamicTablesPkg.dsc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/DynamicTablesPkg/DynamicTablesPkg.dsc b/DynamicTablesPkg/DynamicTablesPkg.dsc
index dfe6c0711105..ef958077ed48 100644
--- a/DynamicTablesPkg/DynamicTablesPkg.dsc
+++ b/DynamicTablesPkg/DynamicTablesPkg.dsc
@@ -4,7 +4,7 @@
 #  Copyright (c) 2019, Linaro Limited. All rights reserved.<BR>
 #  Copyright (c) 2019, ARM Limited. All rights reserved.<BR>
 #
-#  SPDX-License-Identifier: BSD-2-Clause-Patent
+#  SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
 
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 7/9] ArmPkg: ArmScmiDxe - convert .h to UTF-8 from 8859-x
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
                   ` (5 preceding siblings ...)
  2019-09-18 22:43 ` [PATCH 6/9] DynamicTablesPkg: fix .dsc line ending Leif Lindholm
@ 2019-09-18 22:43 ` Leif Lindholm
  2019-09-19  0:18   ` [edk2-devel] " Michael D Kinney
  2019-09-18 22:43 ` [PATCH 8/9] BaseTools: correct line endings for ConvertFce Python script Leif Lindholm
                   ` (3 subsequent siblings)
  10 siblings, 1 reply; 19+ messages in thread
From: Leif Lindholm @ 2019-09-18 22:43 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 922 bytes --]

A paragraph sign in a comment came from some ISO8859 encoding,
convert it (and hence the file) to UTF-8.

Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h b/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h
index ee8734bbaab0..ece84eeff32e 100644
--- a/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h
+++ b/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h
@@ -23,7 +23,7 @@
 #define NUM_REMAIN_PERF_LEVELS(Lvls) (Lvls >> NUM_REMAIN_PERF_LEVELS_SHIFT)
 
 /** Return values for SCMI_MESSAGE_ID_PERFORMANCE_DESCRIBE_LEVELS command.
-  SCMI Spec § 4.5.2.5
+  SCMI Spec § 4.5.2.5
 **/
 typedef struct {
   UINT32 NumLevels;
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 8/9] BaseTools: correct line endings for ConvertFce Python script
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
                   ` (6 preceding siblings ...)
  2019-09-18 22:43 ` [PATCH 7/9] ArmPkg: ArmScmiDxe - convert .h to UTF-8 from 8859-x Leif Lindholm
@ 2019-09-18 22:43 ` Leif Lindholm
  2019-09-19  2:51   ` [edk2-devel] " Bob Feng
  2019-09-18 22:43 ` [PATCH 9/9] EmbeddedPkg: convert Lauterbach README.txt to UTF-8 Leif Lindholm
                   ` (2 subsequent siblings)
  10 siblings, 1 reply; 19+ messages in thread
From: Leif Lindholm @ 2019-09-18 22:43 UTC (permalink / raw)
  To: devel; +Cc: Bob Feng, Liming Gao

Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 BaseTools/Scripts/ConvertFceToStructurePcd.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/BaseTools/Scripts/ConvertFceToStructurePcd.py b/BaseTools/Scripts/ConvertFceToStructurePcd.py
index 10f19dbe2f3c..89e6a727a201 100644
--- a/BaseTools/Scripts/ConvertFceToStructurePcd.py
+++ b/BaseTools/Scripts/ConvertFceToStructurePcd.py
@@ -506,8 +506,8 @@ class mainprocess(object):
     for i in range(len(info_list)-1,-1,-1):
       if len(info_list[i]) == 0:
         info_list.remove(info_list[i])
-    for i in (inf_list, title_all, header_list):
-      i.sort()
+    for i in (inf_list, title_all, header_list):
+      i.sort()
     return keys,title_all,info_list,header_list,inf_list
 
   def remove_bracket(self,List):
@@ -519,9 +519,9 @@ class mainprocess(object):
           List[List.index(i)][i.index(j)] = "|".join(tmp)
         else:
           List[List.index(i)][i.index(j)] = j
-    for i in List:
-      if type(i) == type([0,0]):
-        i.sort()
+    for i in List:
+      if type(i) == type([0,0]):
+        i.sort()
     return List
 
   def write_all(self):
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 9/9] EmbeddedPkg: convert Lauterbach README.txt to UTF-8
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
                   ` (7 preceding siblings ...)
  2019-09-18 22:43 ` [PATCH 8/9] BaseTools: correct line endings for ConvertFce Python script Leif Lindholm
@ 2019-09-18 22:43 ` Leif Lindholm
  2019-09-19  0:16   ` [edk2-devel] " Michael D Kinney
  2019-09-19  2:39 ` [PATCH 0/9] Various line ending and encoding fixes Liming Gao
  2019-09-19 10:02 ` Ard Biesheuvel
  10 siblings, 1 reply; 19+ messages in thread
From: Leif Lindholm @ 2019-09-18 22:43 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 2496 bytes --]

This file contained what looked like windows 1250 encoded single
quotation marks. Convert them to UTF-8.

Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 EmbeddedPkg/Scripts/LauterbachT32/README.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/EmbeddedPkg/Scripts/LauterbachT32/README.txt b/EmbeddedPkg/Scripts/LauterbachT32/README.txt
index 06602ab8763a..5b323375ae35 100644
--- a/EmbeddedPkg/Scripts/LauterbachT32/README.txt
+++ b/EmbeddedPkg/Scripts/LauterbachT32/README.txt
@@ -1,7 +1,7 @@
 DXE Phase Debug
 ===============
-Update the memsize variable in EfiLoadDxe.cmm for the actual amount of memory available in your system.  Allow your system to boot to the point that the DXE core is initialized (so that the System Table and Debug Information table is present in memory) and execute this script (using the toolbar button or ‘do EfiLoadDxe’ from the command area).  It will scan memory for the debug info table and load modules in it.
+Update the memsize variable in EfiLoadDxe.cmm for the actual amount of memory available in your system.  Allow your system to boot to the point that the DXE core is initialized (so that the System Table and Debug Information table is present in memory) and execute this script (using the toolbar button or ‘do EfiLoadDxe’ from the command area).  It will scan memory for the debug info table and load modules in it.
  
 SEC/PEI Phase Debug
 ===================
-There is no way to autodetect where these images reside so you must pass an address for the memory-mapped Firmware Volume containing these images.  To do this, enter ‘do EfiLoadFv <addr>’ where <addr> is the base address for the firmware volume containing the SEC or PEI code.  To be more efficient you may want to create a script that calls this, like MyBoardLoadSec.cmm which contains the call to EfiLoadFv.  You can them map this script to a T32 menu or toolbar button for quick access.
+There is no way to autodetect where these images reside so you must pass an address for the memory-mapped Firmware Volume containing these images.  To do this, enter ‘do EfiLoadFv <addr>’ where <addr> is the base address for the firmware volume containing the SEC or PEI code.  To be more efficient you may want to create a script that calls this, like MyBoardLoadSec.cmm which contains the call to EfiLoadFv.  You can them map this script to a T32 menu or toolbar button for quick access.
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

* Re: [PATCH 3/9] NetworkPkg: add missing newline at end of file
  2019-09-18 22:43 ` [PATCH 3/9] NetworkPkg: add missing newline at end of file Leif Lindholm
@ 2019-09-18 23:53   ` Siyuan, Fu
  0 siblings, 0 replies; 19+ messages in thread
From: Siyuan, Fu @ 2019-09-18 23:53 UTC (permalink / raw)
  To: Leif Lindholm, devel@edk2.groups.io; +Cc: Wu, Jiaxin

Reviewed-by: Siyuan Fu <siyuan.fu@intel.com>

> -----Original Message-----
> From: Leif Lindholm <leif.lindholm@linaro.org>
> Sent: 2019年9月19日 6:43
> To: devel@edk2.groups.io
> Cc: Fu, Siyuan <siyuan.fu@intel.com>; Wu, Jiaxin <jiaxin.wu@intel.com>
> Subject: [PATCH 3/9] NetworkPkg: add missing newline at end of file
> 
> Add missing newline at end of WifiConnectionManagerDxe .uni.
> 
> Cc: Siyuan Fu <siyuan.fu@intel.com>
> Cc: Jiaxin Wu <jiaxin.wu@intel.com>
> Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
> ---
> 
> NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings
> .uni | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git
> a/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrin
> gs.uni
> b/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStri
> ngs.uni
> index 3f2b068fb827..187e5047aa9c 100644
> ---
> a/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrin
> gs.uni
> +++
> b/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStri
> ngs.uni
> @@ -100,4 +100,4 @@
>  #string STR_ADD_HIDDEN_NETWORK                #language en-US "Add Hidden
> Network"
>  #string STR_HIDDEN_NETWORK_LIST               #language en-US "Hidden
> Network List"
>  #string STR_REMOVE_HIDDEN_NETWORK_HELP        #language en-US ""
> -#string STR_REMOVE_HIDDEN_NETWORK             #language en-US "Remove
> Hidden Network"
> \ No newline at end of file
> +#string STR_REMOVE_HIDDEN_NETWORK             #language en-US "Remove
> Hidden Network"
> --
> 2.20.1


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [edk2-devel] [PATCH 9/9] EmbeddedPkg: convert Lauterbach README.txt to UTF-8
  2019-09-18 22:43 ` [PATCH 9/9] EmbeddedPkg: convert Lauterbach README.txt to UTF-8 Leif Lindholm
@ 2019-09-19  0:16   ` Michael D Kinney
  0 siblings, 0 replies; 19+ messages in thread
From: Michael D Kinney @ 2019-09-19  0:16 UTC (permalink / raw)
  To: devel@edk2.groups.io, leif.lindholm@linaro.org, Kinney, Michael D
  Cc: Ard Biesheuvel

Leif,

Since this is a readme file, perhaps those should be changed
to `text` markdown style in an ASCII text file and rename the
file to README.md so it is rendered correctly from the GitHub
web view.

Mike

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On
> Behalf Of Leif Lindholm
> Sent: Wednesday, September 18, 2019 3:44 PM
> To: devel@edk2.groups.io
> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> Subject: [edk2-devel] [PATCH 9/9] EmbeddedPkg: convert
> Lauterbach README.txt to UTF-8
> 
> This file contained what looked like windows 1250
> encoded single quotation marks. Convert them to UTF-8.
> 
> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
> ---
>  EmbeddedPkg/Scripts/LauterbachT32/README.txt | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git
> a/EmbeddedPkg/Scripts/LauterbachT32/README.txt
> b/EmbeddedPkg/Scripts/LauterbachT32/README.txt
> index 06602ab8763a..5b323375ae35 100644
> --- a/EmbeddedPkg/Scripts/LauterbachT32/README.txt
> +++ b/EmbeddedPkg/Scripts/LauterbachT32/README.txt
> @@ -1,7 +1,7 @@
>  DXE Phase Debug
>  ===============
> -Update the memsize variable in EfiLoadDxe.cmm for the
> actual amount of memory available in your system.
> Allow your system to boot to the point that the DXE
> core is initialized (so that the System Table and Debug
> Information table is present in memory) and execute
> this script (using the toolbar button or  do EfiLoadDxe
> from the command area).  It will scan memory for the
> debug info table and load modules in it.
> +Update the memsize variable in EfiLoadDxe.cmm for the
> actual amount of memory available in your system.
> Allow your system to boot to the point that the DXE
> core is initialized (so that the System Table and Debug
> Information table is present in memory) and execute
> this script (using the toolbar button or ‘do
> EfiLoadDxe’ from the command area).  It will scan
> memory for the debug info table and load modules in it.
> 
>  SEC/PEI Phase Debug
>  ===================
> -There is no way to autodetect where these images
> reside so you must pass an address for the memory-
> mapped Firmware Volume containing these images.  To do
> this, enter  do EfiLoadFv <addr>  where <addr> is the
> base address for the firmware volume containing the SEC
> or PEI code.  To be more efficient you may want to
> create a script that calls this, like
> MyBoardLoadSec.cmm which contains the call to
> EfiLoadFv.  You can them map this script to a T32 menu
> or toolbar button for quick access.
> +There is no way to autodetect where these images
> reside so you must pass an address for the memory-
> mapped Firmware Volume containing these images.  To do
> this, enter ‘do EfiLoadFv <addr>’ where <addr> is the
> base address for the firmware volume containing the SEC
> or PEI code.  To be more efficient you may want to
> create a script that calls this, like
> MyBoardLoadSec.cmm which contains the call to
> EfiLoadFv.  You can them map this script to a T32 menu
> or toolbar button for quick access.
> --
> 2.20.1
> 
> 
> 


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [edk2-devel] [PATCH 7/9] ArmPkg: ArmScmiDxe - convert .h to UTF-8 from 8859-x
  2019-09-18 22:43 ` [PATCH 7/9] ArmPkg: ArmScmiDxe - convert .h to UTF-8 from 8859-x Leif Lindholm
@ 2019-09-19  0:18   ` Michael D Kinney
  0 siblings, 0 replies; 19+ messages in thread
From: Michael D Kinney @ 2019-09-19  0:18 UTC (permalink / raw)
  To: devel@edk2.groups.io, leif.lindholm@linaro.org, Kinney, Michael D
  Cc: Ard Biesheuvel

Leif,

We prefer ASCII only in source files.  I have deleted or changed
to an appropriate ASCII character when I have seen these types
of special symbols.

Mike

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On
> Behalf Of Leif Lindholm
> Sent: Wednesday, September 18, 2019 3:43 PM
> To: devel@edk2.groups.io
> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> Subject: [edk2-devel] [PATCH 7/9] ArmPkg: ArmScmiDxe -
> convert .h to UTF-8 from 8859-x
> 
> A paragraph sign in a comment came from some ISO8859
> encoding, convert it (and hence the file) to UTF-8.
> 
> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
> ---
> 
> ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPri
> vate.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git
> a/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolP
> rivate.h
> b/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolP
> rivate.h
> index ee8734bbaab0..ece84eeff32e 100644
> ---
> a/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolP
> rivate.h
> +++
> b/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolP
> rivate.h
> @@ -23,7 +23,7 @@
>  #define NUM_REMAIN_PERF_LEVELS(Lvls) (Lvls >>
> NUM_REMAIN_PERF_LEVELS_SHIFT)
> 
>  /** Return values for
> SCMI_MESSAGE_ID_PERFORMANCE_DESCRIBE_LEVELS command.
> -  SCMI Spec   4.5.2.5
> +  SCMI Spec § 4.5.2.5
>  **/
>  typedef struct {
>    UINT32 NumLevels;
> --
> 2.20.1
> 
> 
> 


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 0/9] Various line ending and encoding fixes
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
                   ` (8 preceding siblings ...)
  2019-09-18 22:43 ` [PATCH 9/9] EmbeddedPkg: convert Lauterbach README.txt to UTF-8 Leif Lindholm
@ 2019-09-19  2:39 ` Liming Gao
  2019-09-19 10:02 ` Ard Biesheuvel
  10 siblings, 0 replies; 19+ messages in thread
From: Liming Gao @ 2019-09-19  2:39 UTC (permalink / raw)
  To: Leif Lindholm, devel@edk2.groups.io
  Cc: Alexei Fedorov, Ard Biesheuvel, Feng, Bob C, Wu, Jiaxin,
	Sami Mujawar, Fu, Siyuan

Reviewed-by: Liming Gao <liming.gao@intel.com> for the changes in BaseTools. 

>-----Original Message-----
>From: Leif Lindholm [mailto:leif.lindholm@linaro.org]
>Sent: Thursday, September 19, 2019 6:43 AM
>To: devel@edk2.groups.io
>Cc: Alexei Fedorov <Alexei.Fedorov@arm.com>; Ard Biesheuvel
><ard.biesheuvel@linaro.org>; Feng, Bob C <bob.c.feng@intel.com>; Wu,
>Jiaxin <jiaxin.wu@intel.com>; Gao, Liming <liming.gao@intel.com>; Sami
>Mujawar <Sami.Mujawar@arm.com>; Fu, Siyuan <siyuan.fu@intel.com>
>Subject: [PATCH 0/9] Various line ending and encoding fixes
>
>I have started looking into doing the CRLF->native conversion for EDK2,
>and as part of my initial scan, I found a bunch of trivial issues that
>would be easier to just fix beforehand.
>
>Leif Lindholm (9):
>  BaseTools: add missing newlines at end of files
>  EmbeddedPkg: add missing newline at end of TemplateResetSystemLib.inf
>  NetworkPkg: add missing newline at end of file
>  EmbeddedPkg: delete outdated FdtLib README.txt
>  BaseTools: fix line endings in SetupGit.py Conf files
>  DynamicTablesPkg: fix .dsc line ending
>  ArmPkg: ArmScmiDxe - convert .h to UTF-8 from 8859-x
>  BaseTools: correct line endings for ConvertFce Python script
>  EmbeddedPkg: convert Lauterbach README.txt to UTF-8
>
> ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h           |
>2 +-
> BaseTools/Conf/diff.order                                               |  2 +-
> BaseTools/Conf/gitattributes                                            |  2 +-
> BaseTools/Scripts/ConvertFceToStructurePcd.py                           | 10 +++++-----
> BaseTools/Source/Python/AutoGen/DataPipe.py                             |  2 +-
> BaseTools/Source/Python/Common/DataType.py                              |  2 +-
> BaseTools/Source/Python/Common/GlobalData.py                            |  2 +-
> DynamicTablesPkg/DynamicTablesPkg.dsc                                   |  2 +-
> EmbeddedPkg/Library/FdtLib/README.txt                                   |  1 -
>
>EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.in
>f   |  2 +-
> EmbeddedPkg/Scripts/LauterbachT32/README.txt                            |  4 ++--
>
>NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings
>.uni |  2 +-
> 12 files changed, 16 insertions(+), 17 deletions(-)
> delete mode 100644 EmbeddedPkg/Library/FdtLib/README.txt
>
>Cc: Alexei Fedorov <Alexei.Fedorov@arm.com>
>Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
>Cc: Bob Feng <bob.c.feng@intel.com>
>Cc: Jiaxin Wu <jiaxin.wu@intel.com>
>Cc: Liming Gao <liming.gao@intel.com>
>Cc: Sami Mujawar <Sami.Mujawar@arm.com>
>Cc: Siyuan Fu <siyuan.fu@intel.com>
>--
>2.20.1


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 1/9] BaseTools: add missing newlines at end of files
  2019-09-18 22:43 ` [PATCH 1/9] BaseTools: add missing newlines at end of files Leif Lindholm
@ 2019-09-19  2:50   ` Bob Feng
  0 siblings, 0 replies; 19+ messages in thread
From: Bob Feng @ 2019-09-19  2:50 UTC (permalink / raw)
  To: Leif Lindholm, devel@edk2.groups.io; +Cc: Gao, Liming

Reviewed-by: Bob Feng <bob.c.feng@intel.com>

-----Original Message-----
From: Leif Lindholm [mailto:leif.lindholm@linaro.org] 
Sent: Thursday, September 19, 2019 6:43 AM
To: devel@edk2.groups.io
Cc: Feng, Bob C <bob.c.feng@intel.com>; Gao, Liming <liming.gao@intel.com>
Subject: [PATCH 1/9] BaseTools: add missing newlines at end of files

Some scripts in Source/Python were missing newlines at end of files, so add them.

Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 BaseTools/Source/Python/AutoGen/DataPipe.py  | 2 +-
 BaseTools/Source/Python/Common/DataType.py   | 2 +-
 BaseTools/Source/Python/Common/GlobalData.py | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/BaseTools/Source/Python/AutoGen/DataPipe.py b/BaseTools/Source/Python/AutoGen/DataPipe.py
index 8b8cfd1c51eb..078bafecb45b 100755
--- a/BaseTools/Source/Python/AutoGen/DataPipe.py
+++ b/BaseTools/Source/Python/AutoGen/DataPipe.py
@@ -163,4 +163,4 @@ class MemoryDataPipe(DataPipe):
 
         self.DataContainer = {"BinCacheDest":GlobalData.gBinCacheDest}
 
-        self.DataContainer = {"EnableGenfdsMultiThread":GlobalData.gEnableGenfdsMultiThread}
\ No newline at end of file
+        self.DataContainer = 
+ {"EnableGenfdsMultiThread":GlobalData.gEnableGenfdsMultiThread}
diff --git a/BaseTools/Source/Python/Common/DataType.py b/BaseTools/Source/Python/Common/DataType.py
index 8ae1bd28fabf..5d49afb0a92a 100644
--- a/BaseTools/Source/Python/Common/DataType.py
+++ b/BaseTools/Source/Python/Common/DataType.py
@@ -532,4 +532,4 @@ PACK_CODE_BY_SIZE = {8:'=Q',
                      0:'=B',
                     16:""}
 
-TAB_COMPILER_MSFT = 'MSFT'
\ No newline at end of file
+TAB_COMPILER_MSFT = 'MSFT'
diff --git a/BaseTools/Source/Python/Common/GlobalData.py b/BaseTools/Source/Python/Common/GlobalData.py
index 8eb72aa1d6f5..74c6d0079bba 100755
--- a/BaseTools/Source/Python/Common/GlobalData.py
+++ b/BaseTools/Source/Python/Common/GlobalData.py
@@ -129,4 +129,4 @@ file_lock = None
 # Common dictionary to share platform libraries' constant Pcd  libConstPcd = None  # Common dictionary to share platform libraries' reference info -Refes = None \ No newline at end of file
+Refes = None
--
2.20.1


^ permalink raw reply related	[flat|nested] 19+ messages in thread

* Re: [edk2-devel] [PATCH 8/9] BaseTools: correct line endings for ConvertFce Python script
  2019-09-18 22:43 ` [PATCH 8/9] BaseTools: correct line endings for ConvertFce Python script Leif Lindholm
@ 2019-09-19  2:51   ` Bob Feng
  0 siblings, 0 replies; 19+ messages in thread
From: Bob Feng @ 2019-09-19  2:51 UTC (permalink / raw)
  To: devel@edk2.groups.io, leif.lindholm@linaro.org; +Cc: Gao, Liming

Reviewed-by: Bob Feng <bob.c.feng@intel.com>

-----Original Message-----
From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of Leif Lindholm
Sent: Thursday, September 19, 2019 6:44 AM
To: devel@edk2.groups.io
Cc: Feng, Bob C <bob.c.feng@intel.com>; Gao, Liming <liming.gao@intel.com>
Subject: [edk2-devel] [PATCH 8/9] BaseTools: correct line endings for ConvertFce Python script

Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 BaseTools/Scripts/ConvertFceToStructurePcd.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/BaseTools/Scripts/ConvertFceToStructurePcd.py b/BaseTools/Scripts/ConvertFceToStructurePcd.py
index 10f19dbe2f3c..89e6a727a201 100644
--- a/BaseTools/Scripts/ConvertFceToStructurePcd.py
+++ b/BaseTools/Scripts/ConvertFceToStructurePcd.py
@@ -506,8 +506,8 @@ class mainprocess(object):
     for i in range(len(info_list)-1,-1,-1):
       if len(info_list[i]) == 0:
         info_list.remove(info_list[i])
-    for i in (inf_list, title_all, header_list):
-      i.sort()
+    for i in (inf_list, title_all, header_list):
+      i.sort()
     return keys,title_all,info_list,header_list,inf_list
 
   def remove_bracket(self,List):
@@ -519,9 +519,9 @@ class mainprocess(object):
           List[List.index(i)][i.index(j)] = "|".join(tmp)
         else:
           List[List.index(i)][i.index(j)] = j
-    for i in List:
-      if type(i) == type([0,0]):
-        i.sort()
+    for i in List:
+      if type(i) == type([0,0]):
+        i.sort()
     return List
 
   def write_all(self):
-- 
2.20.1





^ permalink raw reply related	[flat|nested] 19+ messages in thread

* Re: [edk2-devel] [PATCH 5/9] BaseTools: fix line endings in SetupGit.py Conf files
  2019-09-18 22:43 ` [PATCH 5/9] BaseTools: fix line endings in SetupGit.py Conf files Leif Lindholm
@ 2019-09-19  2:51   ` Bob Feng
  0 siblings, 0 replies; 19+ messages in thread
From: Bob Feng @ 2019-09-19  2:51 UTC (permalink / raw)
  To: devel@edk2.groups.io, leif.lindholm@linaro.org; +Cc: Gao, Liming

Reviewed-by: Bob Feng <bob.c.feng@intel.com>

-----Original Message-----
From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of Leif Lindholm
Sent: Thursday, September 19, 2019 6:43 AM
To: devel@edk2.groups.io
Cc: Feng, Bob C <bob.c.feng@intel.com>; Gao, Liming <liming.gao@intel.com>
Subject: [edk2-devel] [PATCH 5/9] BaseTools: fix line endings in SetupGit.py Conf files

A file header license/copyright header copied around in commit
5b3e695d8ac5 ("BaseTools: add centralized location for git config files") was missing a CR - add it in both faulty locations.

Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 BaseTools/Conf/diff.order    | 2 +-
 BaseTools/Conf/gitattributes | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/BaseTools/Conf/diff.order b/BaseTools/Conf/diff.order index 68b926ca94aa..4361817012c9 100644
--- a/BaseTools/Conf/diff.order
+++ b/BaseTools/Conf/diff.order
@@ -2,7 +2,7 @@
 # Copyright (c) 2019, Linaro Ltd. All rights reserved.
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent -#
+#
 *.dec
 *.dsc.inc
 *.dsc
diff --git a/BaseTools/Conf/gitattributes b/BaseTools/Conf/gitattributes index 9b6ab81a475b..58b93e9d4c27 100644
--- a/BaseTools/Conf/gitattributes
+++ b/BaseTools/Conf/gitattributes
@@ -2,7 +2,7 @@
 # Copyright (c) 2019, Linaro Ltd. All rights reserved.
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent -#
+#
 *.efi     -diff
 *.EFI     -diff
 *.bin     -diff
--
2.20.1





^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 6/9] DynamicTablesPkg: fix .dsc line ending
  2019-09-18 22:43 ` [PATCH 6/9] DynamicTablesPkg: fix .dsc line ending Leif Lindholm
@ 2019-09-19  7:41   ` Sami Mujawar
  0 siblings, 0 replies; 19+ messages in thread
From: Sami Mujawar @ 2019-09-19  7:41 UTC (permalink / raw)
  To: Leif Lindholm, devel@edk2.groups.io; +Cc: Alexei Fedorov

Reviewed-by: Sami Mujawar <Sami.Mujawar@arm.com>

Regards,

Sami Mujawar

-----Original Message-----
From: Leif Lindholm <leif.lindholm@linaro.org>
Sent: 18 September 2019 11:43 PM
To: devel@edk2.groups.io
Cc: Sami Mujawar <Sami.Mujawar@arm.com>; Alexei Fedorov <Alexei.Fedorov@arm.com>
Subject: [PATCH 6/9] DynamicTablesPkg: fix .dsc line ending

Correct line ending in package .dsc.

Cc: Sami Mujawar <Sami.Mujawar@arm.com>
Cc: Alexei Fedorov <Alexei.Fedorov@arm.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
 DynamicTablesPkg/DynamicTablesPkg.dsc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/DynamicTablesPkg/DynamicTablesPkg.dsc b/DynamicTablesPkg/DynamicTablesPkg.dsc
index dfe6c0711105..ef958077ed48 100644
--- a/DynamicTablesPkg/DynamicTablesPkg.dsc
+++ b/DynamicTablesPkg/DynamicTablesPkg.dsc
@@ -4,7 +4,7 @@
 #  Copyright (c) 2019, Linaro Limited. All rights reserved.<BR>  #  Copyright (c) 2019, ARM Limited. All rights reserved.<BR>  # -#  SPDX-License-Identifier: BSD-2-Clause-Patent
+#  SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##

--
2.20.1

IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.

^ permalink raw reply related	[flat|nested] 19+ messages in thread

* Re: [PATCH 0/9] Various line ending and encoding fixes
  2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
                   ` (9 preceding siblings ...)
  2019-09-19  2:39 ` [PATCH 0/9] Various line ending and encoding fixes Liming Gao
@ 2019-09-19 10:02 ` Ard Biesheuvel
  10 siblings, 0 replies; 19+ messages in thread
From: Ard Biesheuvel @ 2019-09-19 10:02 UTC (permalink / raw)
  To: Leif Lindholm
  Cc: edk2-devel-groups-io, Alexei Fedorov, Bob Feng, Jiaxin Wu,
	Liming Gao, Sami Mujawar, Siyuan Fu

On Thu, 19 Sep 2019 at 01:43, Leif Lindholm <leif.lindholm@linaro.org> wrote:
>
> I have started looking into doing the CRLF->native conversion for EDK2,
> and as part of my initial scan, I found a bunch of trivial issues that
> would be easier to just fix beforehand.
>
> Leif Lindholm (9):
>   BaseTools: add missing newlines at end of files
>   EmbeddedPkg: add missing newline at end of TemplateResetSystemLib.inf
>   NetworkPkg: add missing newline at end of file
>   EmbeddedPkg: delete outdated FdtLib README.txt
>   BaseTools: fix line endings in SetupGit.py Conf files
>   DynamicTablesPkg: fix .dsc line ending
>   ArmPkg: ArmScmiDxe - convert .h to UTF-8 from 8859-x
>   BaseTools: correct line endings for ConvertFce Python script
>   EmbeddedPkg: convert Lauterbach README.txt to UTF-8
>

Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

>  ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h           |  2 +-
>  BaseTools/Conf/diff.order                                               |  2 +-
>  BaseTools/Conf/gitattributes                                            |  2 +-
>  BaseTools/Scripts/ConvertFceToStructurePcd.py                           | 10 +++++-----
>  BaseTools/Source/Python/AutoGen/DataPipe.py                             |  2 +-
>  BaseTools/Source/Python/Common/DataType.py                              |  2 +-
>  BaseTools/Source/Python/Common/GlobalData.py                            |  2 +-
>  DynamicTablesPkg/DynamicTablesPkg.dsc                                   |  2 +-
>  EmbeddedPkg/Library/FdtLib/README.txt                                   |  1 -
>  EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.inf   |  2 +-
>  EmbeddedPkg/Scripts/LauterbachT32/README.txt                            |  4 ++--
>  NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.uni |  2 +-
>  12 files changed, 16 insertions(+), 17 deletions(-)
>  delete mode 100644 EmbeddedPkg/Library/FdtLib/README.txt
>
> Cc: Alexei Fedorov <Alexei.Fedorov@arm.com>
> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> Cc: Bob Feng <bob.c.feng@intel.com>
> Cc: Jiaxin Wu <jiaxin.wu@intel.com>
> Cc: Liming Gao <liming.gao@intel.com>
> Cc: Sami Mujawar <Sami.Mujawar@arm.com>
> Cc: Siyuan Fu <siyuan.fu@intel.com>
> --
> 2.20.1
>

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2019-09-19 10:02 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-18 22:43 [PATCH 0/9] Various line ending and encoding fixes Leif Lindholm
2019-09-18 22:43 ` [PATCH 1/9] BaseTools: add missing newlines at end of files Leif Lindholm
2019-09-19  2:50   ` Bob Feng
2019-09-18 22:43 ` [PATCH 2/9] EmbeddedPkg: add missing newline at end of TemplateResetSystemLib.inf Leif Lindholm
2019-09-18 22:43 ` [PATCH 3/9] NetworkPkg: add missing newline at end of file Leif Lindholm
2019-09-18 23:53   ` Siyuan, Fu
2019-09-18 22:43 ` [PATCH 4/9] EmbeddedPkg: delete outdated FdtLib README.txt Leif Lindholm
2019-09-18 22:43 ` [PATCH 5/9] BaseTools: fix line endings in SetupGit.py Conf files Leif Lindholm
2019-09-19  2:51   ` [edk2-devel] " Bob Feng
2019-09-18 22:43 ` [PATCH 6/9] DynamicTablesPkg: fix .dsc line ending Leif Lindholm
2019-09-19  7:41   ` Sami Mujawar
2019-09-18 22:43 ` [PATCH 7/9] ArmPkg: ArmScmiDxe - convert .h to UTF-8 from 8859-x Leif Lindholm
2019-09-19  0:18   ` [edk2-devel] " Michael D Kinney
2019-09-18 22:43 ` [PATCH 8/9] BaseTools: correct line endings for ConvertFce Python script Leif Lindholm
2019-09-19  2:51   ` [edk2-devel] " Bob Feng
2019-09-18 22:43 ` [PATCH 9/9] EmbeddedPkg: convert Lauterbach README.txt to UTF-8 Leif Lindholm
2019-09-19  0:16   ` [edk2-devel] " Michael D Kinney
2019-09-19  2:39 ` [PATCH 0/9] Various line ending and encoding fixes Liming Gao
2019-09-19 10:02 ` Ard Biesheuvel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox