From d33dce984d82ac5c9747d8f8588dbcf2beee5a6e Mon Sep 17 00:00:00 2001
From: Daniel Baumann <daniel@debian.org>
Date: Sun, 26 Oct 2008 16:38:48 +0100
Subject: Using dd rather than cat to write mbr.bin to usb-hdd images; dd is
 more robust in case mbr.bin is corrupted.

---
 helpers/lh_binary_usb-hdd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/helpers/lh_binary_usb-hdd b/helpers/lh_binary_usb-hdd
index 2913676..cc8d751 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
-- 
cgit v1.0