summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaximilian Mehnert <maximilian.mehnert@gmx.de>2015-07-14 16:33:46 +0200
committerDaniel Baumann <mail@daniel-baumann.ch>2015-08-10 21:57:51 +0200
commit5161dcdf3bb50a8be7385f86fdfc60b0eb700bfa (patch)
tree99e2886b4469e3dbc59ac4dbc8347a72208c2afa
parent2dcb4dc06ea2b1a758f30c7d16723929e659f855 (diff)
downloadvyos-live-build-5161dcdf3bb50a8be7385f86fdfc60b0eb700bfa.tar.gz
vyos-live-build-5161dcdf3bb50a8be7385f86fdfc60b0eb700bfa.zip
Correct syslinux mbr.bin path.
-rwxr-xr-xscripts/build/binary_hdd4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/binary_hdd b/scripts/build/binary_hdd
index f5d420681..45158c9d7 100755
--- a/scripts/build/binary_hdd
+++ b/scripts/build/binary_hdd
@@ -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