From: Tom Rini <trini@konsulko.com>
To: Simon Glass <sjg@chromium.org>
Cc: "U-Boot Mailing List" <u-boot@lists.denx.de>,
"AKASHI Takahiro" <akashi.tkhro@gmail.com>,
"Caleb Connolly" <caleb.connolly@linaro.org>,
"Dragan Simic" <dsimic@manjaro.org>,
"Emil Kronborg" <emil.kronborg@protonmail.com>,
"Etienne Carriere" <etienne.carriere@foss.st.com>,
"Francis Laniel" <francis.laniel@amarulasolutions.com>,
"Guillaume La Roque" <glaroque@baylibre.com>,
"Heinrich Schuchardt" <xypron.glpk@gmx.de>,
"Hou Zhiqiang" <Zhiqiang.Hou@nxp.com>,
"Igor Opaniuk" <igor.opaniuk@gmail.com>,
"Ilias Apalodimas" <ilias.apalodimas@linaro.org>,
"Ion Agorria" <ion@agorria.com>,
"Jerome Forissier" <jerome.forissier@linaro.org>,
"Julien Masson" <jmasson@baylibre.com>,
"Marek Vasut" <marek.vasut+renesas@mailbox.org>,
"Mark Kettenis" <kettenis@openbsd.org>,
"Martyn Welch" <martyn.welch@collabora.com>,
"Mattijs Korpershoek" <mkorpershoek@baylibre.com>,
"Maxim Moskalets" <maximmosk4@gmail.com>,
"Maximilian Brune" <maximilian.brune@9elements.com>,
"Michael Trimarchi" <michael@amarulasolutions.com>,
"Michal Simek" <michal.simek@amd.com>,
"Moritz Fischer" <moritzf@google.com>,
"Nam Cao" <namcao@linutronix.de>,
"Peter Robinson" <pbrobinson@gmail.com>,
"Quentin Schulz" <quentin.schulz@cherry.de>,
"Sean Anderson" <seanga2@gmail.com>,
"Sean Edmond" <seanedmond@microsoft.com>,
"Shantur Rathore" <i@shantur.com>,
"Sughosh Ganu" <sughosh.ganu@linaro.org>,
"Svyatoslav Ryhel" <clamor95@gmail.com>,
"Thomas Weißschuh" <thomas.weissschuh@linutronix.de>,
"Tim Harvey" <tharvey@gateworks.com>,
"Tony Dinh" <mibodhi@gmail.com>,
"Vincent Stehlé" <vincent.stehle@arm.com>
Subject: Re: [PATCH v3 00/19] bootstd: Support recording images
Date: Wed, 15 Jan 2025 15:24:39 -0600 [thread overview]
Message-ID: <20250115212439.GD3476@bill-the-cat> (raw)
In-Reply-To: <CAFLszTgFdNrRev+7n6j+NqCM+em_p-ONAc=+sztoYaP50HUivw@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 5339 bytes --]
On Wed, Jan 15, 2025 at 06:55:45AM -0700, Simon Glass wrote:
> Hi,
>
> On Mon, 4 Nov 2024 at 10:51, Simon Glass <sjg@chromium.org> wrote:
> >
> > This series provides a way to keep track of the images used in bootstd,
> > including the type of each image.
> >
> > At present this is sort-of handled by struct bootflow but in quite an
> > ad-hoc way. The structure has become quite large and is hard to query.
> > Future work will be able to reduce its size.
> >
> > Ultimately the 'bootflow info' command may change to also show images as
> > a list, but that is left for later, as this series is already fairly
> > long. So for now, just introduce the concept and adjust bootstd to use
> > it, with a simple command to list the images.
> >
> > This series includes various alist enhancements, to make use of this new
> > data structure a little easier.
> >
> > Changes in v3:
> > - Add a helper in bootflow
> > - Add a new patch supporting ad-hoc bootflows
> > - Add new patch to export bootdev_get_from_blk()
> > - Add new patch to record loaded files in an ad-hoc bootflow
> > - Update bootstd_add_bootflow() to return the element number
> > - Use the helper function
> >
> > Changes in v2:
> > - Add an image type extension in bootflow.h
> > - Change the tag to bootmeth_efi
> > - Drop patches already applied
> > - Drop patches which add new image types
> > - Update to use a new image-type enum in bootflow.h
> > - Use the word 'feature' instead of 'hack'
> >
> > Simon Glass (19):
> > bootstd: Move bootflow-adding to bootstd
> > bootstd: Move bootflow-clearing to bootstd
> > bootstd: Add a function to get bootstd only if available
> > bootstd: Drop the bootdev-specific list of bootflows
> > bootstd: Move the bootflow list into an alist
> > bootstd: Maintain a list of images
> > bootstd: Update bootmeth_alloc_file() to record images
> > boot: pxe: Drop the duplicate comment on get_pxe_file()
> > bootmeth_efi: Simplify reading files by using the common function
> > bootmeth: Update the read_file() method to include a type
> > bootmeth_efi: Check the filename-allocation in the network path
> > boot: Update extlinux pxe_getfile_func() to include type
> > boot: Update pxe bootmeth to record images
> > Update bootmeth_alloc_other() to record images
> > bootstd: Update cros bootmeth to record images
> > bootstd: Add a simple command to list images
> > bootstd: Export bootdev_get_from_blk()
> > bootstd: Add the concept of an ad-hoc bootflow
> > fs: Record loaded files in an ad-hoc bootflow
> >
> > boot/bootdev-uclass.c | 78 ++++++-------------
> > boot/bootflow.c | 77 +++++++++++++++----
> > boot/bootmeth-uclass.c | 29 +++++--
> > boot/bootmeth_android.c | 3 +-
> > boot/bootmeth_cros.c | 17 ++++-
> > boot/bootmeth_efi.c | 16 ++--
> > boot/bootmeth_efi_mgr.c | 3 +-
> > boot/bootmeth_extlinux.c | 7 +-
> > boot/bootmeth_pxe.c | 10 ++-
> > boot/bootmeth_qfw.c | 3 +-
> > boot/bootmeth_sandbox.c | 3 +-
> > boot/bootmeth_script.c | 7 +-
> > boot/bootstd-uclass.c | 104 +++++++++++++++++++++++--
> > boot/pxe_utils.c | 36 ++++-----
> > boot/vbe_simple.c | 5 +-
> > cmd/Kconfig | 9 +++
> > cmd/Makefile | 1 +
> > cmd/bootdev.c | 2 +-
> > cmd/bootflow.c | 11 +--
> > cmd/bootstd.c | 65 ++++++++++++++++
> > cmd/pxe.c | 2 +-
> > cmd/sysboot.c | 6 +-
> > doc/develop/bootstd/overview.rst | 24 +++++-
> > doc/usage/cmd/bootstd.rst | 79 +++++++++++++++++++
> > doc/usage/index.rst | 1 +
> > fs/fs.c | 15 ++++
> > include/bootdev.h | 36 +++------
> > include/bootflow.h | 88 ++++++++++++++++++---
> > include/bootmeth.h | 22 ++++--
> > include/bootstd.h | 69 ++++++++++++++++-
> > include/pxe_utils.h | 14 +++-
> > test/boot/bootflow.c | 126 +++++++++++++++++++++++++++++++
> > test/py/tests/test_ut.py | 3 +-
> > 33 files changed, 788 insertions(+), 183 deletions(-)
> > create mode 100644 cmd/bootstd.c
> > create mode 100644 doc/usage/cmd/bootstd.rst
> >
> > --
> > 2.34.1
> >
>
> patchwork link: https://patchwork.ozlabs.org/project/uboot/list/?series=433068
>
> What is the status of this series please?
So, for v4 of this series, most arm64 platforms grow by ~1KiB (a few are
2, a few are a bit less than 1). 32bit ARM is similar but now mx6sabresd
doesn't build in CI (there's some embedded path names that now overflow,
try make O=/tmp/1/2/3/4/5/6/7/8/9/10/mx6sabresd mx6sabresd_config all).
For size changes, really most architectures are like that, so perhaps
it's worth stepping back again and asking where this should be default
enabled. For the mx6sabresd part, if we drop the recording for ad-hoc
(which I think you had suggested at some point since I wasn't sure about
that direction), everything builds at least.
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
next prev parent reply other threads:[~2025-01-15 21:37 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-04 17:50 [PATCH v3 00/19] bootstd: Support recording images Simon Glass
2024-11-04 17:50 ` [PATCH v3 01/19] bootstd: Move bootflow-adding to bootstd Simon Glass
2024-11-04 22:02 ` Heinrich Schuchardt
2024-11-05 15:13 ` Simon Glass
2024-11-05 15:39 ` Tom Rini
2024-11-05 16:07 ` Simon Glass
2024-11-04 17:50 ` [PATCH v3 02/19] bootstd: Move bootflow-clearing " Simon Glass
2024-11-04 22:04 ` Heinrich Schuchardt
2024-11-04 17:50 ` [PATCH v3 03/19] bootstd: Add a function to get bootstd only if available Simon Glass
2024-11-04 17:50 ` [PATCH v3 04/19] bootstd: Drop the bootdev-specific list of bootflows Simon Glass
2024-11-04 17:50 ` [PATCH v3 05/19] bootstd: Move the bootflow list into an alist Simon Glass
2024-11-04 17:50 ` [PATCH v3 06/19] bootstd: Maintain a list of images Simon Glass
2024-11-04 17:50 ` [PATCH v3 07/19] bootstd: Update bootmeth_alloc_file() to record images Simon Glass
2024-11-04 17:50 ` [PATCH v3 08/19] boot: pxe: Drop the duplicate comment on get_pxe_file() Simon Glass
2024-11-04 17:51 ` [PATCH v3 09/19] bootmeth_efi: Simplify reading files by using the common function Simon Glass
2024-11-04 17:51 ` [PATCH v3 10/19] bootmeth: Update the read_file() method to include a type Simon Glass
2024-11-04 17:51 ` [PATCH v3 11/19] bootmeth_efi: Check the filename-allocation in the network path Simon Glass
2024-11-04 21:42 ` Heinrich Schuchardt
2024-11-15 23:19 ` Simon Glass
2024-11-04 17:51 ` [PATCH v3 12/19] boot: Update extlinux pxe_getfile_func() to include type Simon Glass
2024-11-04 17:51 ` [PATCH v3 13/19] boot: Update pxe bootmeth to record images Simon Glass
2024-11-04 17:51 ` [PATCH v3 14/19] Update bootmeth_alloc_other() " Simon Glass
2024-11-04 17:51 ` [PATCH v3 15/19] bootstd: Update cros bootmeth " Simon Glass
2024-11-04 17:51 ` [PATCH v3 16/19] bootstd: Add a simple command to list images Simon Glass
2024-11-04 17:51 ` [PATCH v3 17/19] bootstd: Export bootdev_get_from_blk() Simon Glass
2024-11-04 17:51 ` [PATCH v3 18/19] bootstd: Add the concept of an ad-hoc bootflow Simon Glass
2024-11-04 17:51 ` [PATCH v3 19/19] fs: Record loaded files in " Simon Glass
2025-01-15 13:55 ` [PATCH v3 00/19] bootstd: Support recording images Simon Glass
2025-01-15 21:24 ` Tom Rini [this message]
2025-01-15 23:14 ` Simon Glass
2025-01-15 23:31 ` Tom Rini
2025-01-16 15:52 ` Simon Glass
2025-01-16 17:21 ` Tom Rini
2025-01-18 4:32 ` Simon Glass
2025-01-18 5:49 ` Tony Dinh
2025-01-18 14:41 ` Tom Rini
2025-01-18 19:26 ` Tony Dinh
2025-01-23 14:38 ` Simon Glass
2025-01-23 17:17 ` Tom Rini
2025-01-25 17:13 ` Simon Glass
2025-01-25 18:27 ` Tom Rini
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=20250115212439.GD3476@bill-the-cat \
--to=trini@konsulko.com \
--cc=Zhiqiang.Hou@nxp.com \
--cc=akashi.tkhro@gmail.com \
--cc=caleb.connolly@linaro.org \
--cc=clamor95@gmail.com \
--cc=dsimic@manjaro.org \
--cc=emil.kronborg@protonmail.com \
--cc=etienne.carriere@foss.st.com \
--cc=francis.laniel@amarulasolutions.com \
--cc=glaroque@baylibre.com \
--cc=i@shantur.com \
--cc=igor.opaniuk@gmail.com \
--cc=ilias.apalodimas@linaro.org \
--cc=ion@agorria.com \
--cc=jerome.forissier@linaro.org \
--cc=jmasson@baylibre.com \
--cc=kettenis@openbsd.org \
--cc=marek.vasut+renesas@mailbox.org \
--cc=martyn.welch@collabora.com \
--cc=maximilian.brune@9elements.com \
--cc=maximmosk4@gmail.com \
--cc=mibodhi@gmail.com \
--cc=michael@amarulasolutions.com \
--cc=michal.simek@amd.com \
--cc=mkorpershoek@baylibre.com \
--cc=moritzf@google.com \
--cc=namcao@linutronix.de \
--cc=pbrobinson@gmail.com \
--cc=quentin.schulz@cherry.de \
--cc=seanedmond@microsoft.com \
--cc=seanga2@gmail.com \
--cc=sjg@chromium.org \
--cc=sughosh.ganu@linaro.org \
--cc=tharvey@gateworks.com \
--cc=thomas.weissschuh@linutronix.de \
--cc=u-boot@lists.denx.de \
--cc=vincent.stehle@arm.com \
--cc=xypron.glpk@gmx.de \
/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