summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhelpers/lh_binary_usb-hdd4
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_binary_usb-hdd b/helpers/lh_binary_usb-hdd
index 29136762a..cc8d7514d 100755
--- a/helpers/lh_binary_usb-hdd
+++ b/helpers/lh_binary_usb-hdd
@@ -155,7 +155,7 @@ case "${LH_CHROOT_BUILD}" in
if [ "${LH_BOOTLOADER}" = "syslinux" ]
then
- cat chroot/usr/lib/syslinux/mbr.bin > ${FREELO}
+ dd if=chroot/usr/lib/syslinux/mbr.bin of=${FREELO} bs=440 count=1
fi
;;
@@ -167,7 +167,7 @@ case "${LH_CHROOT_BUILD}" in
if [ "${LH_BOOTLOADER}" = "syslinux" ]
then
- cat /usr/lib/syslinux/mbr.bin > ${FREELO}
+ dd if=/usr/lib/syslinux/mbr.bin of=${FREELO} bs=440 count=1
fi
;;
esac