From: Alexander Graf Date: Wed, 22 Jun 2016 23:15:38 +0000 (+0200) Subject: efi_loader: Fix typo in distro script X-Git-Tag: v2016.07-rc3~32 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fba5f93c71902079f096549e886e4774334bc7ca;p=oweals%2Fu-boot.git 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: Alexander Graf --- diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index 4db6faa7bb..9ecaf38a33 100644 --- a/include/config_distro_bootcmd.h +++ b/include/config_distro_bootcmd.h @@ -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" \ \