summaryrefslogtreecommitdiff
path: root/mbr
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-02-25 15:31:48 -0800
committerH. Peter Anvin <hpa@zytor.com>2008-02-25 15:31:48 -0800
commiteaaf9a75bb6767b00db51518dffadd714199741d (patch)
treefb2fa07156c4f0029a2ff0c5714f43433958e981 /mbr
parent936c90a8528c98dc25161806777202d06fab94fd (diff)
downloadsyslinux-eaaf9a75bb6767b00db51518dffadd714199741d.tar.gz
gptmbr: another confusion of start and end fields
Use the start field for the boot sector address...
Diffstat (limited to 'mbr')
-rw-r--r--mbr/gptmbr.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S
index 8e8b952f..10dfd45a 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)