Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(571)

Unified Diff: gpt.h

Issue 866005: Describe PMBR in terms of syslinux GPT extension. (Closed)
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « boot.c ('k') | show.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpt.h
diff --git a/gpt.h b/gpt.h
index 3af9f8d9108e99a6db72c63a657677e8f6e8fcf0..108dc2eeda85a3217285ecf1a84139bb12e38197 100644
--- a/gpt.h
+++ b/gpt.h
@@ -58,7 +58,11 @@ struct mbr_part {
};
struct mbr {
tedbo 2010/03/12 22:32:48 The original struct represented a generic MBR with
- uint16_t mbr_code[223];
+ uint8_t mbr_code[424];
+ uuid_t boot_guid;
+ uint32_t disk_id;
+ uint16_t magic_number;
+#define MBR_MAGIC 0x9A1D
struct mbr_part mbr_part[4];
uint16_t mbr_sig;
#define MBR_SIG 0xAA55
« no previous file with comments | « boot.c ('k') | show.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698