add grub-2.00-no-canon.patch (#737370)
backport upstream rev 4408: Don't canonicalise /dev/root and /dev/dm-*.
This commit is contained in:
parent
5e9c41e4fe
commit
7045ce64ed
29
grub-2.00-no-canon.patch
Normal file
29
grub-2.00-no-canon.patch
Normal file
@ -0,0 +1,29 @@
|
||||
From: Valdimir Serbinenko <phcoder@gmail.com>
|
||||
Subject: Don't canonicalise /dev/root and /dev/dm-*.
|
||||
|
||||
upstream rev 4408
|
||||
|
||||
--- a/util/getroot.c 2012-05-28 15:43:12 +0000
|
||||
+++ b/util/getroot.c 2012-06-02 12:36:27 +0000
|
||||
@@ -1036,10 +1036,16 @@
|
||||
{
|
||||
char *tmp = *cur;
|
||||
int root, dm;
|
||||
- *cur = canonicalize_file_name (tmp);
|
||||
- if (*cur == NULL)
|
||||
- grub_util_error (_("failed to get canonical path of %s"), tmp);
|
||||
- free (tmp);
|
||||
+ if (strcmp (*cur, "/dev/root") == 0
|
||||
+ || strncmp (*cur, "/dev/dm-", sizeof ("/dev/dm-") - 1) == 0)
|
||||
+ *cur = tmp;
|
||||
+ else
|
||||
+ {
|
||||
+ *cur = canonicalize_file_name (tmp);
|
||||
+ if (*cur == NULL)
|
||||
+ grub_util_error (_("failed to get canonical path of %s"), tmp);
|
||||
+ free (tmp);
|
||||
+ }
|
||||
root = (strcmp (*cur, "/dev/root") == 0);
|
||||
dm = (strncmp (*cur, "/dev/dm-", sizeof ("/dev/dm-") - 1) == 0);
|
||||
if (!dm && !root)
|
||||
|
@ -51,6 +51,7 @@ Source3: README.Fedora
|
||||
Source4: http://unifoundry.com/unifont-5.1.20080820.pcf.gz
|
||||
Source5: theme.tar.bz2
|
||||
Patch0: grub-2.00-ieee1276.patch
|
||||
Patch1: grub-2.00-no-canon.patch
|
||||
Patch2: grub-1.99-just-say-linux.patch
|
||||
Patch5: grub-1.99-ppc-terminfo.patch
|
||||
Patch10: grub-2.00-add-fw_path-search.patch
|
||||
|
Loading…
Reference in New Issue
Block a user