You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
966 B
30 lines
966 B
7 years ago
|
From c9f932e3dc369211b6e5c2c64c3525a7d4cdd54a Mon Sep 17 00:00:00 2001
|
||
|
From: Peter Jones <pjones@redhat.com>
|
||
|
Date: Fri, 10 Jan 2014 09:36:24 -0500
|
||
|
Subject: [PATCH 121/237] 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 0da2a52..f66c03c 100644
|
||
|
--- a/grub-core/normal/main.c
|
||
|
+++ b/grub-core/normal/main.c
|
||
|
@@ -289,7 +289,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);
|
||
|
--
|
||
|
2.9.3
|
||
|
|