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

Side by Side Diff: src/platform/vboot_reference/vboot_firmware/lib/cgptlib/include/gpt.h

Issue 2303003: Moved cgptlib into vboot_firmware (Closed) Base URL: ssh://gitrw.chromium.org/chromiumos
Patch Set: Created 10 years, 7 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 unified diff | Download patch
OLDNEW
1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 * 4 *
5 * Defines EFI related structure. See more details in EFI 2.3 spec. 5 * Defines EFI related structure. See more details in EFI 2.3 spec.
6 * 6 *
7 * To download EFI standard, please visit UEFI homepage: 7 * To download EFI standard, please visit UEFI homepage:
8 * http://www.uefi.org/ 8 * http://www.uefi.org/
9 */ 9 */
10 #ifndef VBOOT_REFERENCE_CGPTLIB_GPT_H_ 10 #ifndef VBOOT_REFERENCE_CGPTLIB_GPT_H_
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 typedef struct { 80 typedef struct {
81 Guid type; 81 Guid type;
82 Guid unique; 82 Guid unique;
83 uint64_t starting_lba; 83 uint64_t starting_lba;
84 uint64_t ending_lba; 84 uint64_t ending_lba;
85 uint64_t attributes; 85 uint64_t attributes;
86 uint16_t name[36]; /* UTF-16 encoded partition name */ 86 uint16_t name[36]; /* UTF-16 encoded partition name */
87 } GptEntry; 87 } GptEntry;
88 88
89 #endif /* VBOOT_REFERENCE_CGPTLIB_GPT_H_ */ 89 #endif /* VBOOT_REFERENCE_CGPTLIB_GPT_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698