aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@intel.com>2012-10-23 16:49:23 +0100
committerMatt Fleming <matt.fleming@intel.com>2012-10-23 16:53:45 +0100
commitc5d8c3f1676afb21cc9f780b6161eaaab35730fc (patch)
tree069ef6a5b2f9f07e04d1d829d835be05fcba83ad
parent46ea6398fe73c05bbb739886c3ba9ea340699814 (diff)
downloadsyslinux-c5d8c3f1676afb21cc9f780b6161eaaab35730fc.tar.gz
syslinux-c5d8c3f1676afb21cc9f780b6161eaaab35730fc.tar.xz
syslinux-c5d8c3f1676afb21cc9f780b6161eaaab35730fc.zip
diag/mbr: Fix typo in README
Reported-by: Ady <ady-sf@hotmail.com> Signed-off-by: Matt Fleming <matt.fleming@intel.com>
-rw-r--r--diag/mbr/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/diag/mbr/README b/diag/mbr/README
index 96b67c6c..786816c6 100644
--- a/diag/mbr/README
+++ b/diag/mbr/README
@@ -11,7 +11,7 @@ Writing out an MBR is straight forward (it is assumed below that /dev/hda is the
dd conv=notrunc bs=440 count=1 if=mbr.bin of=/dev/hda
-Writing a VBR to match Syslinux requires more work as it must have a jump and be offset into the partition (and as a result the code must be compaible with this offset):
+Writing a VBR to match Syslinux requires more work as it must have a jump and be offset into the partition (and as a result the code must be compatible with this offset):
echo -en "\0353\0130\0220" |dd conv=notrunc bs=1 count=3 of=/dev/hda1
dd conv=notrunc bs=2 count=210 seek=45 if=mbr.bin of=/dev/hda1