From: Sascha Hauer <s.hauer@pengutronix.de>
To: barebox@lists.infradead.org, Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: Re: [PATCH v2 00/13] bootm: prepare loadable abstraction rework
Date: Fri, 13 Feb 2026 15:07:54 +0100 [thread overview]
Message-ID: <177099167417.3669753.6320092937366185083.b4-ty@pengutronix.de> (raw)
In-Reply-To: <20260209181138.2023065-1-a.fatoum@pengutronix.de>
On Mon, 09 Feb 2026 19:10:39 +0100, Ahmad Fatoum wrote:
> v1 -> v2:
> - Dropped "efi: payload: bootm: fix memory corruption on initrd load error":
> Sent out separately
> - Dropped "bootm: cache os_file for appendroot purposes"
> Preparatory patch that has been superseded for the second part of
> this rework
> - Move memory_bank_lookup_region() closer to the bootm_load()
> functions, and make sure same argument are used for both.
> - Switch over efi_loader_bootm as well by using bootm_load_os
> - In fit_open, propagate error for short reads correctly
> - add kernel-doc for open_fdt, resize_region,
> file_read_and_detect_boot_image_type
> - export file_read_and_detect_boot_image_type for future use
> - fix intermittent regression for initrd loading
> - resize_region: return error on resizing to 0 size (Sascha)
> - resize_region: check that there is no conflict with child resources
> (Sascha)
>
> [...]
Applied, thanks!
[01/13] FIT: implement fit_count_images
https://git.pengutronix.de/cgit/barebox/commit/?id=78ab21a74771 (link may not be stable)
[02/13] FIT: add image index argument to fit_open_image
https://git.pengutronix.de/cgit/barebox/commit/?id=5b0796484a85 (link may not be stable)
[03/13] resource: implement gap-aware lookup_region
https://git.pengutronix.de/cgit/barebox/commit/?id=81bf39698226 (link may not be stable)
[04/13] bootm: give bootm_load_ functions an end address
https://git.pengutronix.de/cgit/barebox/commit/?id=f048eaf9323d (link may not be stable)
[05/13] bootm: store separate image_type and kernel_type
https://git.pengutronix.de/cgit/barebox/commit/?id=3b843b66e84d (link may not be stable)
[06/13] bootm: fit: move length calculation into fit_open
https://git.pengutronix.de/cgit/barebox/commit/?id=cc202f94db33 (link may not be stable)
[07/13] libfile: factor out zero-page resistant read_file as __read_full_anywhere
https://git.pengutronix.de/cgit/barebox/commit/?id=56832e6dbbab (link may not be stable)
[08/13] resource: implement resize_region
https://git.pengutronix.de/cgit/barebox/commit/?id=7cd4ea927438 (link may not be stable)
[09/13] bootm: rename image_data::os/initrd with _uimage suffix
https://git.pengutronix.de/cgit/barebox/commit/?id=fe3b12b27cd3 (link may not be stable)
[10/13] uimage: record original file name in uimage_handle
https://git.pengutronix.de/cgit/barebox/commit/?id=d540a886bd78 (link may not be stable)
[11/13] bootm: factor out file detection into helper
https://git.pengutronix.de/cgit/barebox/commit/?id=9be5e29c7262 (link may not be stable)
[12/13] efi: payload: bootm: add dry run support
https://git.pengutronix.de/cgit/barebox/commit/?id=12cfd35f6619 (link may not be stable)
[13/13] efi: initrd: make efi_initrd_register initrd pointer param const
https://git.pengutronix.de/cgit/barebox/commit/?id=f4d060f1b563 (link may not be stable)
Best regards,
--
Sascha Hauer <s.hauer@pengutronix.de>
prev parent reply other threads:[~2026-02-13 14:08 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-09 18:10 Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 01/13] FIT: implement fit_count_images Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 02/13] FIT: add image index argument to fit_open_image Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 03/13] resource: implement gap-aware lookup_region Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 04/13] bootm: give bootm_load_ functions an end address Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 05/13] bootm: store separate image_type and kernel_type Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 06/13] bootm: fit: move length calculation into fit_open Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 07/13] libfile: factor out zero-page resistant read_file as __read_full_anywhere Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 08/13] resource: implement resize_region Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 09/13] bootm: rename image_data::os/initrd with _uimage suffix Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 10/13] uimage: record original file name in uimage_handle Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 11/13] bootm: factor out file detection into helper Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 12/13] efi: payload: bootm: add dry run support Ahmad Fatoum
2026-02-09 18:10 ` [PATCH v2 13/13] efi: initrd: make efi_initrd_register initrd pointer param const Ahmad Fatoum
2026-02-13 14:07 ` Sascha Hauer [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=177099167417.3669753.6320092937366185083.b4-ty@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/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