summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2007-07-25 17:38:09 +0000
committerPeter Jones <pjones@redhat.com>2007-07-25 17:38:09 +0000
commit3b392e7ba791a1b4c9c208e6bd895b2d9daad92a (patch)
tree4e08043555516a64d4322193835c8aa12a6a2909
parente96e7c38335e8113ac82554306933e0091871895 (diff)
downloadanaconda-3b392e7ba791a1b4c9c208e6bd895b2d9daad92a.tar.gz
anaconda-3b392e7ba791a1b4c9c208e6bd895b2d9daad92a.tar.xz
anaconda-3b392e7ba791a1b4c9c208e6bd895b2d9daad92a.zip
- print a message when the boot block is being overwritten
-rw-r--r--ChangeLog5
-rw-r--r--gptsync/gptsync.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 53bd5b9bf..6cf62f792 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2007-07-25 Peter Jones <pjones@redhat.com>
+ * gptsync/gptsync.c (write_mbr): print something when we're
+ overwriting the boot area
+
+2007-07-25 Peter Jones <pjones@redhat.com>
+
* iutil.py (execWithRedirect): fix error reporting when there's no
such executable.
diff --git a/gptsync/gptsync.c b/gptsync/gptsync.c
index bd224cbb4..8de9b8093 100644
--- a/gptsync/gptsync.c
+++ b/gptsync/gptsync.c
@@ -350,6 +350,7 @@ static UINTN write_mbr(VOID)
}
}
if (!have_bootcode) {
+ Print(L"Writing boot code to MBR\n");
// no boot code found in the MBR, add the syslinux MBR code
SetMem(sector, MBR_BOOTCODE_SIZE, 0);
CopyMem(sector, syslinux_mbr, SYSLINUX_MBR_SIZE);