Skip to content
Snippets Groups Projects
Commit fba5f93c authored by Alexander Graf's avatar Alexander Graf Committed by Tom Rini
Browse files

efi_loader: Fix typo in distro script


The distro script is supposed to use the internal fdt as fallback if we
find no viable other option. However, we're missing a space key to actually
make that work.

Add the space, so we can successfully load an EFI blob even when there is
no device tree provided on the target device.

Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
parent a4d79993
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@
"${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; " \
"if fdt addr ${fdt_addr_r}; then " \
"bootefi ${kernel_addr_r} ${fdt_addr_r};" \
"else" \
"else " \
"bootefi ${kernel_addr_r} ${fdtcontroladdr};" \
"fi\0" \
\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment