diff options
author | Tom Rini <trini@konsulko.com> | 2023-06-14 15:50:04 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-06-14 15:50:04 -0400 |
commit | 2f4664f5c3edc55b18d8906f256a4c8e303243c0 (patch) | |
tree | 438153aa69df3c1af0dc04848b507f5a833787dd /boot/bootmeth_extlinux.c | |
parent | 19b77d3d23966a0d6dbb3c86187765f11100fb6f (diff) | |
parent | 2f7c7159ea4c0e5c2aa7671c5b5a2889d0abe7ce (diff) |
Merge branch '2023-06-14-assorted-fixes'
- Fix some issues Coverity Scan reported in IPv6, SPL EXTn support fix,
two small bootstd fixes, one Kconfig dependency fix, and fix booting
on Pinephone Pro
Diffstat (limited to 'boot/bootmeth_extlinux.c')
-rw-r--r-- | boot/bootmeth_extlinux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/bootmeth_extlinux.c b/boot/bootmeth_extlinux.c index 24be0760229..6b2b8400383 100644 --- a/boot/bootmeth_extlinux.c +++ b/boot/bootmeth_extlinux.c @@ -150,7 +150,7 @@ static int extlinux_boot(struct udevice *dev, struct bootflow *bflow) info.dev = dev; info.bflow = bflow; ret = pxe_setup_ctx(&ctx, &cmdtp, extlinux_getfile, &info, true, - bflow->subdir, false); + bflow->fname, false); if (ret) return log_msg_ret("ctx", -EINVAL); |