7e98da058f
This change reorganizes and cleanups our patches to reduce the patch number from 314 patches to 187. That's achieved by dropping patches that are later reverted and squashing fixes for earlier patches that introduced features. There are no code changes and the diff with upstream is the same before and after the cleanup. Having fewer patches makes easier to manage the patchset and also will ease to rebase them on top of the latest grub-2.04 release. Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
112 lines
3.0 KiB
Diff
112 lines
3.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Thu, 6 Mar 2014 11:51:33 -0500
|
|
Subject: [PATCH] Try mac/guid/etc before grub.cfg on tftp config files.
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
---
|
|
grub-core/normal/main.c | 80 ++++++++++++++++++++++++++-----------------------
|
|
1 file changed, 43 insertions(+), 37 deletions(-)
|
|
|
|
diff --git a/grub-core/normal/main.c b/grub-core/normal/main.c
|
|
index 231f3f86371..cf5c0b273ce 100644
|
|
--- a/grub-core/normal/main.c
|
|
+++ b/grub-core/normal/main.c
|
|
@@ -347,53 +347,59 @@ grub_cmd_normal (struct grub_command *cmd __attribute__ ((unused)),
|
|
/* Guess the config filename. It is necessary to make CONFIG static,
|
|
so that it won't get broken by longjmp. */
|
|
char *config;
|
|
- const char *prefix, *fw_path;
|
|
-
|
|
- prefix = fw_path = grub_env_get ("fw_path");
|
|
- if (fw_path)
|
|
- {
|
|
- config = grub_xasprintf ("%s/grub.cfg", fw_path);
|
|
- if (config)
|
|
- {
|
|
- grub_file_t file;
|
|
-
|
|
- file = grub_file_open (config);
|
|
- if (file)
|
|
- {
|
|
- grub_file_close (file);
|
|
- grub_enter_normal_mode (config);
|
|
- }
|
|
- else
|
|
- {
|
|
- /* Ignore all errors. */
|
|
- grub_errno = 0;
|
|
- }
|
|
- grub_free (config);
|
|
- }
|
|
- }
|
|
+ const char *prefix;
|
|
|
|
+ prefix = grub_env_get ("fw_path");
|
|
if (! prefix)
|
|
prefix = grub_env_get ("prefix");
|
|
+
|
|
if (prefix)
|
|
- {
|
|
- grub_size_t config_len;
|
|
- config_len = grub_strlen (prefix) +
|
|
- sizeof ("/grub.cfg-XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX");
|
|
- config = grub_malloc (config_len);
|
|
+ {
|
|
+ if (grub_strncmp (prefix + 1, "tftp", sizeof ("tftp") - 1) == 0)
|
|
+ {
|
|
+ grub_size_t config_len;
|
|
+ config_len = grub_strlen (prefix) +
|
|
+ sizeof ("/grub.cfg-XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX");
|
|
+ config = grub_malloc (config_len);
|
|
|
|
- if (! config)
|
|
- goto quit;
|
|
+ if (! config)
|
|
+ goto quit;
|
|
|
|
- grub_snprintf (config, config_len, "%s/grub.cfg", prefix);
|
|
+ grub_snprintf (config, config_len, "%s/grub.cfg", prefix);
|
|
|
|
- if (grub_strncmp (prefix + 1, "tftp", sizeof ("tftp") - 1) == 0)
|
|
- grub_net_search_configfile (config);
|
|
+ grub_net_search_configfile (config);
|
|
|
|
- grub_enter_normal_mode (config);
|
|
- grub_free (config);
|
|
+ grub_enter_normal_mode (config);
|
|
+ grub_free (config);
|
|
+ config = NULL;
|
|
+ }
|
|
+
|
|
+ if (!config)
|
|
+ {
|
|
+ config = grub_xasprintf ("%s/grub.cfg", prefix);
|
|
+ if (config)
|
|
+ {
|
|
+ grub_file_t file;
|
|
+
|
|
+ file = grub_file_open (config);
|
|
+ if (file)
|
|
+ {
|
|
+ grub_file_close (file);
|
|
+ grub_enter_normal_mode (config);
|
|
+ }
|
|
+ else
|
|
+ {
|
|
+ /* Ignore all errors. */
|
|
+ grub_errno = 0;
|
|
+ }
|
|
+ grub_free (config);
|
|
+ }
|
|
+ }
|
|
}
|
|
else
|
|
- grub_enter_normal_mode (0);
|
|
+ {
|
|
+ grub_enter_normal_mode (0);
|
|
+ }
|
|
}
|
|
else
|
|
grub_enter_normal_mode (argv[0]);
|