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

Unified Diff: vboot_firmware/lib/cgptlib/include/gpt.h

Issue 2844006: This fixes the EFI BIOS boot problems introduced with cgpt. (Closed) Base URL: ssh://git@chromiumos-git//vboot_reference.git
Patch Set: Created 10 years, 6 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 | « cgpt/cmd_show.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vboot_firmware/lib/cgptlib/include/gpt.h
diff --git a/vboot_firmware/lib/cgptlib/include/gpt.h b/vboot_firmware/lib/cgptlib/include/gpt.h
index 7a1d576849f3a9a3476dd416d57f9d3be7396dee..4ba016c38ccecbed4946f1930bbd71b27f7f1e73 100644
--- a/vboot_firmware/lib/cgptlib/include/gpt.h
+++ b/vboot_firmware/lib/cgptlib/include/gpt.h
@@ -79,13 +79,12 @@ typedef struct {
uint64_t first_usable_lba;
uint64_t last_usable_lba;
Guid disk_uuid;
-
uint64_t entries_lba;
uint32_t number_of_entries;
uint32_t size_of_entry;
uint32_t entries_crc32;
uint8_t reserved_padding[]; /* entire sector reserved for header */
-} GptHeader;
+} __attribute__((packed)) GptHeader;
/* GPT partition entry defines the starting and ending LBAs of a partition.
* It also contains the unique GUID, type, and attribute bits.
@@ -100,6 +99,6 @@ typedef struct {
uint64_t attributes;
uint16_t name[36]; /* UTF-16 encoded partition name */
uint8_t reserved[]; /* nothing, really */
-} GptEntry;
+} __attribute__((packed)) GptEntry;
#endif /* VBOOT_REFERENCE_CGPTLIB_GPT_H_ */
« no previous file with comments | « cgpt/cmd_show.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698