git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7506c15
)
efi_loader: Drop sandbox PXE architecture
author
Simon Glass
<sjg@chromium.org>
Thu, 7 Nov 2024 21:31:47 +0000
(14:31 -0700)
committer
Heinrich Schuchardt
<heinrich.schuchardt@canonical.com>
Sat, 9 Nov 2024 09:01:47 +0000
(10:01 +0100)
Rather than returning 0, just return an error, since sandbox is not used
with PXE at present.
Signed-off-by: Simon Glass <sjg@chromium.org>
lib/efi_loader/efi_helper.c
patch
|
blob
|
history
diff --git
a/lib/efi_loader/efi_helper.c
b/lib/efi_loader/efi_helper.c
index
ab5678e
..
bf96f61
100644
(file)
--- a/
lib/efi_loader/efi_helper.c
+++ b/
lib/efi_loader/efi_helper.c
@@
-91,8
+91,6
@@
int efi_get_pxe_arch(void)
return 0x19;
else if (IS_ENABLED(CONFIG_ARCH_RV64I))
return 0x1b;
- else if (IS_ENABLED(CONFIG_SANDBOX))
- return 0; /* not used */
return -EINVAL;
}