66 lines
2.2 KiB
Diff
66 lines
2.2 KiB
Diff
|
From 243ef12c384dc0e9c71fd7894f2359a96e0c833d Mon Sep 17 00:00:00 2001
|
||
|
From: Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
|
||
|
Date: Tue, 11 Jun 2013 15:14:05 -0300
|
||
|
Subject: [PATCH 480/482] Disable GRUB video support for IBM power machines
|
||
|
|
||
|
Should fix the problem in bugzilla:
|
||
|
https://bugzilla.redhat.com/show_bug.cgi?id=973205
|
||
|
---
|
||
|
grub-core/kern/ieee1275/cmain.c | 5 ++++-
|
||
|
grub-core/video/ieee1275.c | 9 ++++++---
|
||
|
include/grub/ieee1275/ieee1275.h | 2 ++
|
||
|
3 files changed, 12 insertions(+), 4 deletions(-)
|
||
|
|
||
|
diff --git a/grub-core/kern/ieee1275/cmain.c b/grub-core/kern/ieee1275/cmain.c
|
||
|
index abd1ca9..22a931e 100644
|
||
|
--- a/grub-core/kern/ieee1275/cmain.c
|
||
|
+++ b/grub-core/kern/ieee1275/cmain.c
|
||
|
@@ -88,7 +88,10 @@ grub_ieee1275_find_options (void)
|
||
|
is_qemu = 1;
|
||
|
|
||
|
if (rc >= 0 && grub_strncmp (tmp, "IBM", 3) == 0)
|
||
|
- grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_NO_TREE_SCANNING_FOR_DISKS);
|
||
|
+ {
|
||
|
+ grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_NO_TREE_SCANNING_FOR_DISKS);
|
||
|
+ grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_DISABLE_VIDEO_SUPPORT);
|
||
|
+ }
|
||
|
|
||
|
/* Old Macs have no key repeat, newer ones have fully working one.
|
||
|
The ones inbetween when repeated key generates an escaoe sequence
|
||
|
diff --git a/grub-core/video/ieee1275.c b/grub-core/video/ieee1275.c
|
||
|
index 5c58702..298662d 100644
|
||
|
--- a/grub-core/video/ieee1275.c
|
||
|
+++ b/grub-core/video/ieee1275.c
|
||
|
@@ -347,9 +347,12 @@ static struct grub_video_adapter grub_video_ieee1275_adapter =
|
||
|
|
||
|
GRUB_MOD_INIT(ieee1275_fb)
|
||
|
{
|
||
|
- find_display ();
|
||
|
- if (display)
|
||
|
- grub_video_register (&grub_video_ieee1275_adapter);
|
||
|
+ if (! grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_DISABLE_VIDEO_SUPPORT))
|
||
|
+ {
|
||
|
+ find_display ();
|
||
|
+ if (display)
|
||
|
+ grub_video_register (&grub_video_ieee1275_adapter);
|
||
|
+ }
|
||
|
}
|
||
|
|
||
|
GRUB_MOD_FINI(ieee1275_fb)
|
||
|
diff --git a/include/grub/ieee1275/ieee1275.h b/include/grub/ieee1275/ieee1275.h
|
||
|
index 61d5769..b08a30d 100644
|
||
|
--- a/include/grub/ieee1275/ieee1275.h
|
||
|
+++ b/include/grub/ieee1275/ieee1275.h
|
||
|
@@ -139,6 +139,8 @@ enum grub_ieee1275_flag
|
||
|
GRUB_IEEE1275_FLAG_BROKEN_REPEAT,
|
||
|
|
||
|
GRUB_IEEE1275_FLAG_CURSORONOFF_ANSI_BROKEN,
|
||
|
+
|
||
|
+ GRUB_IEEE1275_FLAG_DISABLE_VIDEO_SUPPORT
|
||
|
};
|
||
|
|
||
|
extern int EXPORT_FUNC(grub_ieee1275_test_flag) (enum grub_ieee1275_flag flag);
|
||
|
--
|
||
|
1.8.2.1
|
||
|
|