DistroKit Mailinglist
 help / color / mirror / Atom feed
* [DistroKit] [PATCH v2 00/10] refactor data partition setup
@ 2023-11-03 22:52 Roland Hieber
  2023-11-03 22:52 ` [DistroKit] [PATCH v2 01/10] treewide: images: unify partition labels Roland Hieber
                   ` (9 more replies)
  0 siblings, 10 replies; 16+ messages in thread
From: Roland Hieber @ 2023-11-03 22:52 UTC (permalink / raw)
  To: distrokit; +Cc: Roland Hieber

PATCH v2:
* ENV{PARTNAME} is not set for all partitions, use
  ENV{ID_PART_ENTRY_NAME} instead, which is also used by udev's
  60-persistent-storage.rules to generate /dev/disk/by-partlabel/*

PATCH v1: https://lore.distrokit.org/distrokit/20231103182438.1051601-1-rhi@pengutronix.de

Roland Hieber (10):
  treewide: images: unify partition labels
  v7a: image-stm32mp: set GPT Partition Type UUID
  treewide: images: remove size specifications for root partitions
  treewide: images: increase size of all qemu images to 1 GiB
  datapartition: generate partitions via systemd-repart
  datapartition: add missing mount unit
  datapartition: set license
  treewide: images: remove root-B and data partitions
  rauc-udev: generate symlinks based on GPT partition labels
  v7a: barebox: bootchooser: use GPT partition labels

 .../platform-mips/config/images/ar9331.config |  4 --
 .../platform-mips/config/images/malta.config  |  4 --
 .../config/images/malta.config                |  4 --
 configs/platform-rpi1/config/images/hd.config |  2 +-
 .../nv/bootchooser.system0.boot               |  2 +-
 .../nv/bootchooser.system1.boot               |  2 +-
 .../nv/bootchooser.system0.boot               |  2 +-
 .../nv/bootchooser.system1.boot               |  2 +-
 .../nv/bootchooser.system0.boot               |  2 +-
 .../nv/bootchooser.system1.boot               |  2 +-
 .../nv/bootchooser.system0.boot               |  2 +-
 .../nv/bootchooser.system1.boot               |  2 +-
 .../nv/bootchooser.system0.boot               |  2 +-
 .../nv/bootchooser.system1.boot               |  2 +-
 .../platform-v7a/config/images/at91-sd.config |  3 --
 .../config/images/beaglebone.config           |  7 ---
 configs/platform-v7a/config/images/gf.config  |  3 --
 configs/platform-v7a/config/images/hd.config  |  2 +-
 .../config/images/riotboard.config            |  9 ----
 .../platform-v7a/config/images/rpi2.config    |  7 ---
 .../config/images/sabrelite.config            |  3 --
 .../platform-v7a/config/images/stm32mp.config |  9 +---
 .../config/images/udoo-neo.config             |  3 --
 .../config/images/vexpress.config             | 11 +---
 .../config/images/at91-sd.config              |  3 --
 .../config/images/vexpress.config             |  6 +--
 .../config/images/espressobin.config          |  4 --
 .../platform-v8a/config/images/imx8m.config   |  2 +-
 .../platform-v8a/config/images/rock3a.config  |  3 --
 projectroot/etc/rc.once.d/repart              |  3 ++
 projectroot/etc/repart.rc-once.d/10-root.conf |  5 ++
 projectroot/etc/repart.rc-once.d/20-root.conf |  6 +++
 projectroot/etc/repart.rc-once.d/30-data.conf |  6 +++
 .../usr/lib/systemd/system/mnt-data.mount     |  6 +++
 .../system/systemd-autoformat@.service        | 15 ------
 .../lib/udev/rules.d/90-rauc-partitions.rules | 54 +++++++------------
 .../usr/lib/udev/rules.d/91-mkfs-ext4.rules   |  5 --
 rules/datapartition.in                        |  3 ++
 rules/datapartition.make                      | 14 +++--
 39 files changed, 75 insertions(+), 151 deletions(-)
 create mode 100755 projectroot/etc/rc.once.d/repart
 create mode 100644 projectroot/etc/repart.rc-once.d/10-root.conf
 create mode 100644 projectroot/etc/repart.rc-once.d/20-root.conf
 create mode 100644 projectroot/etc/repart.rc-once.d/30-data.conf
 create mode 100644 projectroot/usr/lib/systemd/system/mnt-data.mount
 delete mode 100644 projectroot/usr/lib/systemd/system/systemd-autoformat@.service
 delete mode 100644 projectroot/usr/lib/udev/rules.d/91-mkfs-ext4.rules

-- 
2.39.2




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

end of thread, other threads:[~2023-12-13 14:49 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-03 22:52 [DistroKit] [PATCH v2 00/10] refactor data partition setup Roland Hieber
2023-11-03 22:52 ` [DistroKit] [PATCH v2 01/10] treewide: images: unify partition labels Roland Hieber
2023-11-03 22:52 ` [DistroKit] [PATCH v2 02/10] v7a: image-stm32mp: set GPT Partition Type UUID Roland Hieber
2023-11-03 22:52 ` [DistroKit] [PATCH v2 03/10] treewide: images: remove size specifications for root partitions Roland Hieber
2023-11-03 22:52 ` [DistroKit] [PATCH v2 04/10] treewide: images: increase size of all qemu images to 1 GiB Roland Hieber
2023-11-03 22:52 ` [DistroKit] [PATCH v2 05/10] datapartition: generate partitions via systemd-repart Roland Hieber
2023-11-09  8:13   ` Roland Hieber
2023-12-12 18:07     ` Robert Schwebel
2023-12-13 14:49       ` Roland Hieber
2023-11-03 22:52 ` [DistroKit] [PATCH v2 06/10] datapartition: add missing mount unit Roland Hieber
2023-11-03 22:52 ` [DistroKit] [PATCH v2 07/10] datapartition: set license Roland Hieber
2023-11-04 11:14   ` Michael Olbrich
2023-11-06 11:55     ` Robert Schwebel
2023-11-03 22:52 ` [DistroKit] [PATCH v2 08/10] treewide: images: remove root-B and data partitions Roland Hieber
2023-11-03 22:52 ` [DistroKit] [PATCH v2 09/10] rauc-udev: generate symlinks based on GPT partition labels Roland Hieber
2023-11-03 22:52 ` [DistroKit] [PATCH v2 10/10] v7a: barebox: bootchooser: use " Roland Hieber

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