Correct syslinux mbr.bin path.

This commit is contained in:
Maximilian Mehnert 2015-07-14 16:33:46 +02:00 committed by Daniel Baumann
parent 2dcb4dc06e
commit 5161dcdf3b
1 changed files with 2 additions and 2 deletions

View File

@ -170,7 +170,7 @@ case "${LB_BUILD_WITH_CHROOT}" in
if [ "${LB_BOOTLOADER}" = "syslinux" ]
then
dd if=chroot/usr/lib/${_BOOTLOADER}/mbr.bin of=${FREELO} bs=440 count=1
dd if=chroot/usr/lib/SYSLINUX/mbr.bin of=${FREELO} bs=440 count=1
fi
;;
@ -182,7 +182,7 @@ case "${LB_BUILD_WITH_CHROOT}" in
if [ "${LB_BOOTLOADER}" = "syslinux" ]
then
dd if=/usr/lib/${_BOOTLOADER}/mbr.bin of=${FREELO} bs=440 count=1
dd if=/usr/lib/SYSLINUX/mbr.bin of=${FREELO} bs=440 count=1
fi
;;
esac