From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Laszlo Ersek <lersek@redhat.com>,
edk2-devel-groups-io <devel@edk2.groups.io>
Cc: "Andrew Fish" <afish@apple.com>,
"Anthony Perard" <anthony.perard@citrix.com>,
"Ard Biesheuvel" <ard.biesheuvel@arm.com>,
"David Woodhouse" <dwmw2@infradead.org>,
"Eric Dong" <eric.dong@intel.com>,
"Hao A Wu" <hao.a.wu@intel.com>,
"Jiewen Yao" <jiewen.yao@intel.com>,
"Jordan Justen" <jordan.l.justen@intel.com>,
"Julien Grall" <julien@xen.org>,
"Leif Lindholm" <leif@nuviainc.com>,
"Liran Alon" <liran.alon@oracle.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Michael Kinney" <michael.d.kinney@intel.com>,
"Nikita Leshenko" <nikita.leshchenko@oracle.com>,
"Sami Mujawar" <sami.mujawar@arm.com>,
"Stefan Berger" <stefanb@linux.ibm.com>,
"Supreeth Venkatesh" <supreeth.venkatesh@arm.com>
Subject: Re: [PATCH 0/3] Maintainers.txt: restore lexicographical order between package / subsystem headers
Date: Wed, 3 Jun 2020 18:09:51 +0200 [thread overview]
Message-ID: <c5d21bbe-37c0-e615-09fc-4196f16190b4@redhat.com> (raw)
In-Reply-To: <20200603160627.3594-1-lersek@redhat.com>
On 6/3/20 6:06 PM, Laszlo Ersek wrote:
> Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2778
> Repo: https://pagure.io/lersek/edk2.git
> Branch: sort_maintainers
>
> We originally meant to keep the subsystem (package) titles sorted, in
> "Maintainers.txt".
>
> However, as of 7191dd3c5990 ("ArmPkg/PlatformBootManagerLib: reject
> 'default' parity and stop bit count", 2020-06-03), we have some disorder
> introduced.
>
> This patch series restores lexicographical order between the subsystem
> (package) headers.
>
> The package / subsystem headers can be collected with the following
> small script:
>
> $ dos2unix < Maintainers.txt \
> | sed -n -e '/^EDK II Packages:$/,$p' \
> | tail -n +3 \
> | grep -E -v '^($|[LMRWTSFX]:)'
>
> Where
>
> - "dos2unix" strips CRs,
>
> - "sed" removes the first part of the file that precedes the "EDK II
> Packages:" heading,
>
> - "tail" removes that heading plus the underline on the next line,
>
> - and "grep" removes the empty lines and the section entries.
>
> What remains is the section headers.
>
> Here's a comparison between the outputs of this script, before (that is,
> at commit 7191dd3c5990) and after the series is applied:
>
>> @@ -1,42 +1,42 @@
>> ArmPkg
>> ArmPlatformPkg
>> ArmVirtPkg
>> ArmVirtPkg: modules used on Xen
>> BaseTools
>> CryptoPkg
>> DynamicTablesPkg
>> EmbeddedPkg
>> EmulatorPkg
>> FatPkg
>> FmpDevicePkg
>> IntelFsp2Pkg
>> IntelFsp2WrapperPkg
>> MdeModulePkg
>> MdeModulePkg: ACPI modules
>> -MdeModulePkg: ACPI S3 modules
>> +MdeModulePkg: ACPI modules related to S3
>> MdeModulePkg: BDS modules
>> MdeModulePkg: Console and Graphics modules
>> MdeModulePkg: Core services (PEI, DXE and Runtime) modules
>> MdeModulePkg: Device and Peripheral modules
>> MdeModulePkg: Firmware Update modules
>> MdeModulePkg: HII and UI modules
>> MdeModulePkg: Management Mode (MM, SMM) modules
>> MdeModulePkg: Reset modules
>> MdeModulePkg: SMBIOS modules
>> MdeModulePkg: UEFI Variable modules
>> MdePkg
>> NetworkPkg
>> OvmfPkg
>> -OvmfPkg: Xen-related modules
>> -OvmfPkg: TCG- and TPM2-related modules
>> OvmfPkg: CSM modules
>> OvmfPkg: MptScsi and PVSCSI driver
>> +OvmfPkg: TCG- and TPM2-related modules
>> +OvmfPkg: Xen-related modules
>> PcAtChipsetPkg
>> SecurityPkg
>> ShellPkg
>> SignedCapsulePkg
>> SourceLevelDebugPkg
>> +StandaloneMmPkg
>> UefiCpuPkg
>> UefiPayloadPkg
>> UnitTestFrameworkPkg
>> -StandaloneMmPkg
>
> Cc: Andrew Fish <afish@apple.com>
> Cc: Anthony Perard <anthony.perard@citrix.com>
> Cc: Ard Biesheuvel <ard.biesheuvel@arm.com>
> Cc: David Woodhouse <dwmw2@infradead.org>
> Cc: Eric Dong <eric.dong@intel.com>
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Jordan Justen <jordan.l.justen@intel.com>
> Cc: Julien Grall <julien@xen.org>
> Cc: Leif Lindholm <leif@nuviainc.com>
> Cc: Liran Alon <liran.alon@oracle.com>
> Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
> Cc: Michael Kinney <michael.d.kinney@intel.com>
> Cc: Nikita Leshenko <nikita.leshchenko@oracle.com>
> Cc: Philippe Mathieu-Daudé <philmd@redhat.com>
> Cc: Sami Mujawar <sami.mujawar@arm.com>
> Cc: Stefan Berger <stefanb@linux.ibm.com>
> Cc: Supreeth Venkatesh <supreeth.venkatesh@arm.com>
>
> Thanks,
> Laszlo
>
> Laszlo Ersek (3):
> Maintainers.txt: retitle "MdeModulePkg: ACPI S3 modules"
> Maintainers.txt: restore order of OvmfPkg sections
> Maintainers.txt: move StandaloneMmPkg to the right spot
>
> Maintainers.txt | 54 ++++++++++----------
> 1 file changed, 27 insertions(+), 27 deletions(-)
>
FWIW series:
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
next prev parent reply other threads:[~2020-06-03 16:09 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-03 16:06 [PATCH 0/3] Maintainers.txt: restore lexicographical order between package / subsystem headers Laszlo Ersek
2020-06-03 16:06 ` [PATCH 1/3] Maintainers.txt: retitle "MdeModulePkg: ACPI S3 modules" Laszlo Ersek
2020-06-05 0:12 ` Dong, Eric
2020-06-03 16:06 ` [PATCH 2/3] Maintainers.txt: restore order of OvmfPkg sections Laszlo Ersek
2020-06-03 16:08 ` Ard Biesheuvel
2020-06-03 16:06 ` [PATCH 3/3] Maintainers.txt: move StandaloneMmPkg to the right spot Laszlo Ersek
2020-06-03 16:07 ` Ard Biesheuvel
2020-06-03 23:24 ` Yao, Jiewen
2020-06-03 16:09 ` Philippe Mathieu-Daudé [this message]
2020-06-03 16:16 ` [PATCH 0/3] Maintainers.txt: restore lexicographical order between package / subsystem headers Leif Lindholm
2020-06-09 18:17 ` [edk2-devel] " Laszlo Ersek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c5d21bbe-37c0-e615-09fc-4196f16190b4@redhat.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox