Correct syslinux/extlinux mbr.bin path (second try)
dash doesn't support parameter expansion it seems. So implemented with "tr" as in binary_syslinus.
This commit is contained in:
parent
ddc6659002
commit
a8cc708427
|
@ -186,7 +186,7 @@ case "${LB_BUILD_WITH_CHROOT}" in
|
|||
|
||||
if [ "${LB_PRIMARY_BOOTLOADER}" = "syslinux" ]
|
||||
then
|
||||
dd if=chroot/usr/lib/${_BOOTLOADER^^}/mbr.bin of=${FREELO} bs=440 count=1
|
||||
dd if=chroot/usr/lib/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z])/mbr.bin of=${FREELO} bs=440 count=1
|
||||
fi
|
||||
;;
|
||||
|
||||
|
@ -206,7 +206,7 @@ case "${LB_BUILD_WITH_CHROOT}" in
|
|||
|
||||
if [ "${LB_PRIMARY_BOOTLOADER}" = "syslinux" ]
|
||||
then
|
||||
dd if=/usr/lib/${_BOOTLOADER^^}/mbr.bin of=${FREELO} bs=440 count=1
|
||||
dd if=/usr/lib/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z])/mbr.bin of=${FREELO} bs=440 count=1
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in New Issue