~ubuntu-branches/ubuntu/trusty/grub2/trusty

« back to all changes in this revision

Viewing changes to include/grub/gpt_partition.h

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-01-16 15:18:04 UTC
  • mfrom: (17.6.38 experimental)
  • Revision ID: package-import@ubuntu.com-20140116151804-3foouk7fpqcq3sxx
Tags: 2.02~beta2-2
* Convert patch handling to git-dpm.
* Add bi-endian support to ELF parser (Tomohiro B Berry).
* Adjust restore_mkdevicemap.patch to mark get_kfreebsd_version as static,
  to appease "gcc -Werror=missing-prototypes".
* Cherry-pick from upstream:
  - Change grub-macbless' manual page section to 8.
* Install grub-glue-efi, grub-macbless, grub-render-label, and
  grub-syslinux2cfg.
* grub-shell: Pass -no-pad to xorriso when building floppy images.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
  grub_uint32_t maxpart;
67
67
  grub_uint32_t partentry_size;
68
68
  grub_uint32_t partentry_crc32;
69
 
} __attribute__ ((packed));
 
69
} GRUB_PACKED;
70
70
 
71
71
struct grub_gpt_partentry
72
72
{
76
76
  grub_uint64_t end;
77
77
  grub_uint64_t attrib;
78
78
  char name[72];
79
 
} __attribute__ ((packed));
 
79
} GRUB_PACKED;
80
80
 
81
81
grub_err_t
82
82
grub_gpt_partition_map_iterate (grub_disk_t disk,
83
 
                                int (*hook) (grub_disk_t disk,
84
 
                                             const grub_partition_t partition));
 
83
                                grub_partition_iterate_hook_t hook,
 
84
                                void *hook_data);
85
85
 
86
86
 
87
87
#endif /* ! GRUB_GPT_PARTITION_HEADER */