Blame SOURCES/0166-Handle-rssd-storage-devices.patch
|
|
ecb9bb |
From 1ab087435c259702c62fdfe85e28f3e3f2459266 Mon Sep 17 00:00:00 2001
|
|
|
ecb9bb |
From: Peter Jones <pjones@redhat.com>
|
|
|
ecb9bb |
Date: Tue, 30 Jun 2015 15:50:41 -0400
|
|
|
23d2ea |
Subject: [PATCH 166/198] Handle rssd storage devices.
|
|
|
ecb9bb |
|
|
|
ecb9bb |
Resolves: rhbz#1087962
|
|
|
ecb9bb |
|
|
|
ecb9bb |
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
|
ecb9bb |
---
|
|
|
ecb9bb |
grub-core/osdep/linux/getroot.c | 13 +++++++++++++
|
|
|
ecb9bb |
1 file changed, 13 insertions(+)
|
|
|
ecb9bb |
|
|
|
ecb9bb |
diff --git a/grub-core/osdep/linux/getroot.c b/grub-core/osdep/linux/getroot.c
|
|
|
ecb9bb |
index 7007193..5987d07 100644
|
|
|
ecb9bb |
--- a/grub-core/osdep/linux/getroot.c
|
|
|
ecb9bb |
+++ b/grub-core/osdep/linux/getroot.c
|
|
|
ecb9bb |
@@ -884,6 +884,19 @@ grub_util_part_to_disk (const char *os_dev, struct stat *st,
|
|
|
ecb9bb |
return path;
|
|
|
ecb9bb |
}
|
|
|
ecb9bb |
|
|
|
ecb9bb |
+ /* If this is an rssd device. */
|
|
|
ecb9bb |
+ if ((strncmp ("rssd", p, 4) == 0) && p[4] >= 'a' && p[4] <= 'z')
|
|
|
ecb9bb |
+ {
|
|
|
ecb9bb |
+ char *pp = p + 4;
|
|
|
ecb9bb |
+ while (*pp >= 'a' && *pp <= 'z')
|
|
|
ecb9bb |
+ pp++;
|
|
|
ecb9bb |
+ if (*pp)
|
|
|
ecb9bb |
+ *is_part = 1;
|
|
|
ecb9bb |
+ /* /dev/rssd[a-z]+[0-9]* */
|
|
|
ecb9bb |
+ *pp = '\0';
|
|
|
ecb9bb |
+ return path;
|
|
|
ecb9bb |
+ }
|
|
|
ecb9bb |
+
|
|
|
ecb9bb |
/* If this is a loop device */
|
|
|
ecb9bb |
if ((strncmp ("loop", p, 4) == 0) && p[4] >= '0' && p[4] <= '9')
|
|
|
ecb9bb |
{
|
|
|
ecb9bb |
--
|
|
|
23d2ea |
2.7.4
|
|
|
ecb9bb |
|