diff options
-rw-r--r-- | doc/gpt.txt | 2 | ||||
-rw-r--r-- | mbr/gptmbr.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/gpt.txt b/doc/gpt.txt index b17322d0..fd6f00de 100644 --- a/doc/gpt.txt +++ b/doc/gpt.txt @@ -48,7 +48,7 @@ form: --------------------------------------------------------- 0 1 0x80 (this is a bootable partition) 1 3 CHS of partition (using INT 13h geometry) - 4 1 0xEE (partition type: EFI data partition) + 4 1 0xED (partition type: synthetic) 5 3 CHS of partition end 8 4 Partition start LBA 12 4 Partition end LBA diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S index e8c60c00..d25d27c8 100644 --- a/mbr/gptmbr.S +++ b/mbr/gptmbr.S @@ -183,7 +183,7 @@ found_part: xorl %eax,%eax movb $0x80,%al stosl - movb $0xee,%al + movb $0xed,%al stosl movl 32(%si),%eax movl 36(%si),%edx |