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

« back to all changes in this revision

Viewing changes to include/grub/i386/xnu.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:
61
61
  grub_uint32_t efi_runtime_first_page;
62
62
  /* First memory page containing runtime code or data minus previous value. */
63
63
  grub_uint32_t efi_runtime_npages;
64
 
} __attribute__ ((packed));
 
64
} GRUB_PACKED;
65
65
 
66
66
struct grub_xnu_boot_params_v1
67
67
{
72
72
  grub_uint32_t efi_system_table;
73
73
  /* Size of grub_efi_uintn_t in bits. */
74
74
  grub_uint8_t efi_uintnbits;
75
 
} __attribute__ ((packed));
 
75
} GRUB_PACKED;
76
76
#define GRUB_XNU_BOOTARGSV1_VERMINOR 5
77
77
#define GRUB_XNU_BOOTARGSV1_VERMAJOR 1
78
78
 
92
92
  grub_uint32_t unused2[11];
93
93
  grub_uint64_t fsbfreq;
94
94
  grub_uint32_t unused3[734];
95
 
} __attribute__ ((packed));
 
95
} GRUB_PACKED;
96
96
#define GRUB_XNU_BOOTARGSV2_VERMINOR 0
97
97
#define GRUB_XNU_BOOTARGSV2_VERMAJOR 2
98
98