diff options
Diffstat (limited to 'scripts/build/binary_hdd')
-rwxr-xr-x | scripts/build/binary_hdd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/binary_hdd b/scripts/build/binary_hdd index 55932be8b..81e4af23a 100755 --- a/scripts/build/binary_hdd +++ b/scripts/build/binary_hdd @@ -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/${_BOOTLOADER^^}/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/${_BOOTLOADER^^}/mbr.bin of=${FREELO} bs=440 count=1 fi ;; esac |