* grub-core/loader/efi/appleloader.c (devpath_8): New var.

(devs): Add devpath_8.
This commit is contained in:
Benoit Gschwind 2012-09-10 09:34:29 +02:00 committed by Vladimir 'phcoder' Serbinenko
parent c5052c81ab
commit 801a3027be
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2012-09-10 Benoit Gschwind <gschwind>
* grub-core/loader/efi/appleloader.c (devpath_8): New var.
(devs): Add devpath_8.
2012-09-08 Peter Jones <pjones@redhat.com>
* grub-core/Makefile.core.def (efifwsetup): New module.

View file

@ -127,6 +127,10 @@ static struct piwg_full_device_path devpath_6 = MAKE_PIWG_PATH (0xffcc4000,
static struct piwg_full_device_path devpath_7 = MAKE_PIWG_PATH (0xff981000,
0xffc8ffff);
/* mid-2012 MBP retina (MacBookPro10,1) */
static struct piwg_full_device_path devpath_8 = MAKE_PIWG_PATH (0xff990000,
0xffb2ffff);
struct devdata
{
const char *model;
@ -142,6 +146,7 @@ struct devdata devs[] =
{"MB NV", (grub_efi_device_path_t *) &devpath_5},
{"MB NV2", (grub_efi_device_path_t *) &devpath_6},
{"MBP2011", (grub_efi_device_path_t *) &devpath_7},
{"MBP2012", (grub_efi_device_path_t *) &devpath_8},
{NULL, NULL},
};