Last change
on this file since 588 was
588,
checked in by bcornec, 15 years ago
|
merge -r 560:587 $SVN_M/branches/stable
|
-
Property svn:keywords set to
Id
-
Property svn:unix-mode set to
755
|
File size:
356 bytes
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | |
---|
3 | if [ "$#" -lt "1" ] ; then |
---|
4 | echo "raw-MR <dev>" >> /dev/stderr |
---|
5 | exit 1 |
---|
6 | fi |
---|
7 | LogIt "Restoring MBR..." 2 |
---|
8 | if uname -a | grep -q FreeBSD; then |
---|
9 | echo -e 'y\ny' | /mnt/RESTORING/sbin/fdisk -b /BOOTLOADER.MBR -B $1 >/dev/null 2>>/tmp/mondo-restore.log |
---|
10 | else |
---|
11 | dd if=/BOOTLOADER.MBR of=$1 bs=446 count=1 2>> /tmp/mondo-restore.log |
---|
12 | fi |
---|
13 | exit $? |
---|
14 | |
---|
15 | |
---|
16 | |
---|
Note: See
TracBrowser
for help on using the repository browser.