[edk2-devel] [PATCH v2 0/9] Various line ending and encoding fixes

Leif Lindholm posted 9 patches 4 years, 7 months ago
Failed in applying to current master (apply log)
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                            |  7 -------
EmbeddedPkg/Scripts/LauterbachT32/Readme.md                             | 16 ++++++++++++++++
NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.uni |  2 +-
13 files changed, 30 insertions(+), 22 deletions(-)
delete mode 100644 EmbeddedPkg/Library/FdtLib/README.txt
delete mode 100644 EmbeddedPkg/Scripts/LauterbachT32/README.txt
create mode 100644 EmbeddedPkg/Scripts/LauterbachT32/Readme.md
[edk2-devel] [PATCH v2 0/9] Various line ending and encoding fixes
Posted by Leif Lindholm 4 years, 7 months ago
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.

Mike asked me to also do a trainling whitespace cleanup, and that will
be coming next. I will refrain from pushing this one until that one is
ready to go also, in order to isolate the non-functional-changes churn.

v2:
- Converted 8-bit characters to 7-bit replacements instead of converting
  files to UTF-8.
- Renamed/reworked Lauterbach README.txt to Readme.md.
- Added R-b:s.

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 from 8859-x to 7-bit
  BaseTools: correct line endings for ConvertFce Python script
  EmbeddedPkg: convert Lauterbach README.txt to 7-bit safe Readme.md

 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                            |  7 -------
 EmbeddedPkg/Scripts/LauterbachT32/Readme.md                             | 16 ++++++++++++++++
 NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.uni |  2 +-
 13 files changed, 30 insertions(+), 22 deletions(-)
 delete mode 100644 EmbeddedPkg/Library/FdtLib/README.txt
 delete mode 100644 EmbeddedPkg/Scripts/LauterbachT32/README.txt
 create mode 100644 EmbeddedPkg/Scripts/LauterbachT32/Readme.md

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: "Kinney, Michael D" <michael.d.kinney@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


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#47606): https://edk2.groups.io/g/devel/message/47606
Mute This Topic: https://groups.io/mt/34201142/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-

Re: [edk2-devel] [PATCH v2 0/9] Various line ending and encoding fixes
Posted by Philippe Mathieu-Daudé 4 years, 7 months ago
On 9/19/19 6:03 PM, Leif Lindholm 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.
> 
> Mike asked me to also do a trainling whitespace cleanup, and that will
> be coming next. I will refrain from pushing this one until that one is
> ready to go also, in order to isolate the non-functional-changes churn.
> 
> v2:
> - Converted 8-bit characters to 7-bit replacements instead of converting
>   files to UTF-8.
> - Renamed/reworked Lauterbach README.txt to Readme.md.
> - Added R-b:s.
> 
> 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 from 8859-x to 7-bit
>   BaseTools: correct line endings for ConvertFce Python script
>   EmbeddedPkg: convert Lauterbach README.txt to 7-bit safe Readme.md

For this funny series:
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#47725): https://edk2.groups.io/g/devel/message/47725
Mute This Topic: https://groups.io/mt/34201142/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-