mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-24 14:32:58 +00:00
30 lines
966 B
Diff
30 lines
966 B
Diff
|
From 72cc0eaa566ac27b56c84021887ada3ba8c02380 Mon Sep 17 00:00:00 2001
|
||
|
From: Peter Jones <pjones@redhat.com>
|
||
|
Date: Fri, 10 Jan 2014 09:36:24 -0500
|
||
|
Subject: [PATCH 34/37] Fix grub_script_execute_sourcecode() usage on ppc.
|
||
|
|
||
|
593e430c made it not take the extra argc/argv that this code still
|
||
|
passes it.
|
||
|
|
||
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
||
|
---
|
||
|
grub-core/normal/main.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/grub-core/normal/main.c b/grub-core/normal/main.c
|
||
|
index 6c24a07..6eae828 100644
|
||
|
--- a/grub-core/normal/main.c
|
||
|
+++ b/grub-core/normal/main.c
|
||
|
@@ -281,7 +281,7 @@ grub_normal_execute (const char *config, int nested, int batch)
|
||
|
if (! grub_ieee1275_cas_reboot (script))
|
||
|
{
|
||
|
char *dummy[1] = { NULL };
|
||
|
- if (! grub_script_execute_sourcecode (script, 0, dummy))
|
||
|
+ if (! grub_script_execute_sourcecode (script))
|
||
|
boot = 1;
|
||
|
}
|
||
|
grub_free (script);
|
||
|
--
|
||
|
1.8.4.2
|
||
|
|