From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Giulio Benetti <giulio.benetti@benettiengineering.com>,
Buildroot List <buildroot@buildroot.org>
Subject: Re: [Buildroot] [PATCH 0/8] genimage.cfg file clean-up
Date: Sat, 23 Jul 2022 15:37:20 +0200 [thread overview]
Message-ID: <20220723133720.GA2641@scaer> (raw)
In-Reply-To: <20220722202151.76235-1-thomas.petazzoni@bootlin.com>
Thomas, Giulio, All,
On 2022-07-22 22:21 +0200, Thomas Petazzoni via buildroot spake thusly:
> This small series is a revamp of Giulio's series cleaning up
> genimage.cfg. This new version is the result of some discussion
> between Arnout and me to find a middle-ground situation.
Applied to master, Thanks!
I'll further reply to patch 3 with a very minor comment.
Regards,
Yann E. MORIN.
> So what we propose is to:
>
> - Use the U and F specifiers provided by genimage for the EFI System
> Partition and FAT32 partitions respectively.
>
> - Use the L specifier (explicitly specified in genimage.cfg, even
> though it is the default), for the root filesystem or other Linux
> filesystems. This means we would not comply with the
> systemd-specific Discoverable Partitions Specification
> (https://systemd.io/DISCOVERABLE_PARTITIONS/), but we don't see the
> point of this specification (which requires identifying root
> filesystems for different architecture by different GUID) in the
> context of Buildroot. However, while we recommend using L for all
> new genimage.cfg, we do not change existing genimage.cfg, to not
> break them.
>
> In this series, none of the patches except the last make any
> functional change. The last patch does introduce some functional
> change: some partitions were identified as EFI System Partition even
> though they are not: the last commit converts them to use the "F"
> type, used for FAT filesystems.
>
> Best regards,
>
> Thomas Petazzoni
>
> Thomas Petazzoni (8):
> board/orangepi/common/genimage.cfg: use quotes around "gpt"
> board/*/genimage.cfg: use partition-table-type = "gpt"
> docs/manual: update documentation about partition-type-uuid convention
> in genimage.cfg
> board/orangepi/orangepi-r1/genimage.cfg: remove double quotes around
> partition-type-uuid values
> board/orangepi/orangepi-r1/genimage.cfg: use correct partition type
> board/*/genimage.cfg: use partition-type-uuid U where relevant
> board/sifive/hifive-unleashed/genimage*: convert partition-type-uuid
> values to lower-case
> board/*/genimage.cfg: use partition-type-uuid = F for some FAT
> partitions
>
> board/aarch64-efi/genimage-efi.cfg | 2 +-
> board/friendlyarm/nanopc-t4/genimage.cfg | 2 +-
> board/friendlyarm/nanopi-m4/genimage.cfg | 2 +-
> board/octavo/osd32mp1-brk/genimage.cfg | 2 +-
> board/octavo/osd32mp1-red/genimage.cfg | 2 +-
> board/olimex/stmp1_olinuxino/genimage.cfg | 2 +-
> board/orangepi/common/genimage.cfg | 2 +-
> board/orangepi/orangepi-r1/genimage.cfg | 4 ++--
> board/pc/genimage-efi.cfg | 2 +-
> board/pine64/rockpro64/genimage.cfg | 2 +-
> board/qemu/aarch64-sbsa/genimage.cfg | 2 +-
> board/radxa/rockpi-4/genimage.cfg | 2 +-
> board/radxa/rockpi-n10/genimage.cfg | 2 +-
> board/radxa/rockpi-n8/genimage.cfg | 2 +-
> board/seeed/stm32mp157c-odyssey/genimage.cfg | 2 +-
> board/sifive/hifive-unleashed/genimage_sdcard.cfg | 6 +++---
> board/sifive/hifive-unleashed/genimage_spi-nor.cfg | 4 ++--
> .../common/stm32mp157/genimage.cfg.template | 2 +-
> docs/manual/writing-rules.txt | 12 ++++++++++++
> 19 files changed, 34 insertions(+), 22 deletions(-)
>
> --
> 2.37.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
prev parent reply other threads:[~2022-07-23 13:38 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-22 20:21 [Buildroot] [PATCH 0/8] genimage.cfg file clean-up Thomas Petazzoni via buildroot
2022-07-22 20:21 ` [Buildroot] [PATCH 1/8] board/orangepi/common/genimage.cfg: use quotes around "gpt" Thomas Petazzoni via buildroot
2022-07-22 20:21 ` [Buildroot] [PATCH 2/8] board/*/genimage.cfg: use partition-table-type = "gpt" Thomas Petazzoni via buildroot
2022-07-22 20:21 ` [Buildroot] [PATCH 3/8] docs/manual: update documentation about partition-type-uuid convention in genimage.cfg Thomas Petazzoni via buildroot
2022-07-23 13:38 ` Yann E. MORIN
2022-07-22 20:21 ` [Buildroot] [PATCH 4/8] board/orangepi/orangepi-r1/genimage.cfg: remove double quotes around partition-type-uuid values Thomas Petazzoni via buildroot
2022-07-22 20:21 ` [Buildroot] [PATCH 5/8] board/orangepi/orangepi-r1/genimage.cfg: use correct partition type Thomas Petazzoni via buildroot
2022-07-22 20:21 ` [Buildroot] [PATCH 6/8] board/*/genimage.cfg: use partition-type-uuid U where relevant Thomas Petazzoni via buildroot
2022-07-22 20:21 ` [Buildroot] [PATCH 7/8] board/sifive/hifive-unleashed/genimage*: convert partition-type-uuid values to lower-case Thomas Petazzoni via buildroot
2022-07-22 20:21 ` [Buildroot] [PATCH 8/8] board/*/genimage.cfg: use partition-type-uuid = F for some FAT partitions Thomas Petazzoni via buildroot
2022-07-23 13:37 ` Yann E. MORIN [this message]
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-all 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=20220723133720.GA2641@scaer \
--to=yann.morin.1998@free.fr \
--cc=buildroot@buildroot.org \
--cc=giulio.benetti@benettiengineering.com \
--cc=thomas.petazzoni@bootlin.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.