#!/bin/sh

if [ "$#" -lt "1" ] ; then
    echo "raw-MR <dev>" >> /dev/stderr
    exit 1
fi
LogIt "Restoring MBR..." 2
dd if=/BOOTLOADER.MBR of=$1 bs=446 count=1 2>> /tmp/mondo-restore.log
exit $?



