From: Saul Wold Date: Tue, 11 Jul 2017 15:14:16 +0000 (-0700) Subject: mkefidsk: fix bash/dash shell quoting problem X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=359722a86580128aeccd05531eff0da4e6971721;p=openembedded-core.git mkefidsk: fix bash/dash shell quoting problem mkefidsk currently writes a startup.nsh with embedded control characters. This happens because \b etc are control sequences to the shell echo command when using dash. The resulting startup.nsh causes the bootup to fail, and the user is dropped into the EFI shell to manually run startup.nsh. Patch originally provided by Troy D. Hanson [YOCTO #9665] Signed-off-by: Saul Wold Signed-off-by: Richard Purdie (cherry picked from commit 008d6cb5bb4969f53a228893c502be8c9420ecb0) Signed-off-by: Richard Purdie --- diff --git a/scripts/contrib/mkefidisk.sh b/scripts/contrib/mkefidisk.sh index 800733f0af..ac4ec9c7fb 100755 --- a/scripts/contrib/mkefidisk.sh +++ b/scripts/contrib/mkefidisk.sh @@ -444,7 +444,7 @@ if [ -d $ROOTFS_MNT/etc/udev/ ] ; then fi # Add startup.nsh script for automated boot -echo "fs0:\EFI\BOOT\bootx64.efi" > $BOOTFS_MNT/startup.nsh +printf "fs0:\%s\BOOT\%s\n" "EFI" "bootx64.efi" > $BOOTFS_MNT/startup.nsh # Call cleanup to unmount devices and images and remove the TMPDIR