From eaaf9a75bb6767b00db51518dffadd714199741d Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 25 Feb 2008 15:31:48 -0800 Subject: [PATCH] gptmbr: another confusion of start and end fields Use the start field for the boot sector address... --- mbr/gptmbr.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S index 8e8b952..10dfd45 100644 --- a/mbr/gptmbr.S +++ b/mbr/gptmbr.S @@ -192,8 +192,8 @@ found_part: * partition information in memory. */ boot: - movl (40+16)(%si),%eax - movl (48+16)(%si),%edx + movl (32+16)(%si),%eax + movl (36+16)(%si),%edx movw $bootsec,%bx call read_sector cmpw $0xaa55, -2(%bx) -- 2.7.4