Add missing video ids to coreboot and ieee1275 video.
This commit is contained in:
parent
ab1440bd4e
commit
45fbd9a23f
5 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Add missing video ids to coreboot and ieee1275 video.
|
||||
|
||||
2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* util/grub-mkrescue.in: Add mips-arc support.
|
||||
|
|
|
@ -338,6 +338,8 @@ grub_linux_setup_video (struct linux_kernel_params *params)
|
|||
case GRUB_VIDEO_DRIVER_CIRRUS:
|
||||
case GRUB_VIDEO_DRIVER_BOCHS:
|
||||
case GRUB_VIDEO_DRIVER_RADEON_FULOONG2E:
|
||||
case GRUB_VIDEO_DRIVER_IEEE1275:
|
||||
case GRUB_VIDEO_DRIVER_COREBOOT:
|
||||
/* Make gcc happy. */
|
||||
case GRUB_VIDEO_DRIVER_SDL:
|
||||
case GRUB_VIDEO_DRIVER_NONE:
|
||||
|
|
|
@ -128,6 +128,7 @@ static struct grub_video_adapter grub_video_cbfb_adapter =
|
|||
.name = "Coreboot video driver",
|
||||
|
||||
.prio = GRUB_VIDEO_ADAPTER_PRIO_FIRMWARE_DIRTY,
|
||||
.id = GRUB_VIDEO_DRIVER_COREBOOT,
|
||||
|
||||
.init = grub_video_cbfb_init,
|
||||
.fini = grub_video_fb_fini,
|
||||
|
|
|
@ -241,6 +241,7 @@ static struct grub_video_adapter grub_video_ieee1275_adapter =
|
|||
.name = "IEEE1275 video driver",
|
||||
|
||||
.prio = GRUB_VIDEO_ADAPTER_PRIO_FIRMWARE,
|
||||
.id = GRUB_VIDEO_DRIVER_IEEE1275,
|
||||
|
||||
.init = grub_video_ieee1275_init,
|
||||
.fini = grub_video_ieee1275_fini,
|
||||
|
|
|
@ -283,6 +283,8 @@ typedef enum grub_video_driver_id
|
|||
GRUB_VIDEO_DRIVER_SDL,
|
||||
GRUB_VIDEO_DRIVER_SIS315PRO,
|
||||
GRUB_VIDEO_DRIVER_RADEON_FULOONG2E,
|
||||
GRUB_VIDEO_DRIVER_COREBOOT,
|
||||
GRUB_VIDEO_DRIVER_IEEE1275
|
||||
} grub_video_driver_id_t;
|
||||
|
||||
typedef enum grub_video_adapter_prio
|
||||
|
|
Loading…
Reference in a new issue