diff options
author | Tom Rini <trini@konsulko.com> | 2025-03-18 13:12:51 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-03-18 13:12:51 -0600 |
commit | 8bc3542384e3a1219e5ffb62b79d16dddc1b1fb9 (patch) | |
tree | 8473478696b9a12d2db424afcec705dcce58c580 /arch/sandbox/lib/bootm.c | |
parent | 698edd63eca090a2e299cd3facf90a0b97bed677 (diff) | |
parent | 0f094b8b146679c3980cd2febde4e902bbc4405d (diff) |
Merge patch series "pxe: Precursor series for supporting read_all() in extlinux / PXE"
Simon Glass <sjg@chromium.org> says:
This series includes some patches related to allowing read_all() to be
used with the extlinux / PXE bootmeths.
These patches were split out from the stb4 series, since it will need to
have additional patches for LWIP, to avoid breaking PXE booting when
LWIP is used.
Link: https://lore.kernel.org/r/20250306002533.2380866-1-sjg@chromium.org
Diffstat (limited to 'arch/sandbox/lib/bootm.c')
-rw-r--r-- | arch/sandbox/lib/bootm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/sandbox/lib/bootm.c b/arch/sandbox/lib/bootm.c index 44ba8b52e13..8ed923750f4 100644 --- a/arch/sandbox/lib/bootm.c +++ b/arch/sandbox/lib/bootm.c @@ -89,3 +89,8 @@ int booti_setup(ulong image, ulong *relocated_addr, ulong *size, return 1; } + +bool booti_is_valid(const void *img) +{ + return false; +} |