2013-06-07 18:03:56 +00:00
|
|
|
From 16489277b4f51c97e8fe631dc4ea67e689e5c70b Mon Sep 17 00:00:00 2001
|
2013-05-02 20:54:52 +00:00
|
|
|
From: Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>
|
|
|
|
Date: Fri, 19 Apr 2013 15:14:28 +0200
|
2013-06-12 19:24:37 +00:00
|
|
|
Subject: [PATCH 328/482] * grub-core/kern/ieee1275/cmain.c
|
2013-05-02 20:54:52 +00:00
|
|
|
(grub_ieee1275_find_options): Look for /boot-rom as well as /rom/boot-rom.
|
|
|
|
|
|
|
|
---
|
|
|
|
ChangeLog | 5 +++++
|
|
|
|
grub-core/kern/ieee1275/cmain.c | 3 ++-
|
|
|
|
2 files changed, 7 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/ChangeLog b/ChangeLog
|
|
|
|
index 3d4b23d..488be60 100644
|
|
|
|
--- a/ChangeLog
|
|
|
|
+++ b/ChangeLog
|
|
|
|
@@ -1,5 +1,10 @@
|
|
|
|
2013-04-19 Vladimir Serbinenko <phcoder@gmail.com>
|
|
|
|
|
|
|
|
+ * grub-core/kern/ieee1275/cmain.c (grub_ieee1275_find_options):
|
|
|
|
+ Look for /boot-rom as well as /rom/boot-rom.
|
|
|
|
+
|
|
|
|
+2013-04-19 Vladimir Serbinenko <phcoder@gmail.com>
|
|
|
|
+
|
|
|
|
* grub-core/commands/videotest.c (grub_cmd_videotest): Fix error
|
|
|
|
handling when creating text_layer failed.
|
|
|
|
* grub-core/video/video.c (grub_video_create_render_target):
|
|
|
|
diff --git a/grub-core/kern/ieee1275/cmain.c b/grub-core/kern/ieee1275/cmain.c
|
|
|
|
index 5f6a6da..abd1ca9 100644
|
|
|
|
--- a/grub-core/kern/ieee1275/cmain.c
|
|
|
|
+++ b/grub-core/kern/ieee1275/cmain.c
|
|
|
|
@@ -186,7 +186,8 @@ grub_ieee1275_find_options (void)
|
|
|
|
grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_HAS_CURSORONOFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (! grub_ieee1275_finddevice ("/rom/boot-rom", &bootrom))
|
|
|
|
+ if (! grub_ieee1275_finddevice ("/rom/boot-rom", &bootrom)
|
|
|
|
+ || ! grub_ieee1275_finddevice ("/boot-rom", &bootrom))
|
|
|
|
{
|
|
|
|
rc = grub_ieee1275_get_property (bootrom, "model", tmp, sizeof (tmp), 0);
|
|
|
|
if (rc >= 0 && !grub_strncmp (tmp, "PPC Open Hack'Ware",
|
|
|
|
--
|
2013-06-07 18:03:56 +00:00
|
|
|
1.8.2.1
|
2013-05-02 20:54:52 +00:00
|
|
|
|