012e0e85e4
- Support s390x Secure Execution (jsc#PED-9531) * grub2-s390x-secure-execution-support.patch - Update grub2-s390x-set-hostonly.patch to add the patch header and the description OBS-URL: https://build.opensuse.org/request/show/1227248 OBS-URL: https://build.opensuse.org/package/show/Base:System/grub2?expand=0&rev=524
14 lines
269 B
Diff
14 lines
269 B
Diff
--- a/grub-core/osdep/linux/getroot.c
|
|
+++ b/grub-core/osdep/linux/getroot.c
|
|
@@ -740,6 +740,10 @@
|
|
if (! realpath (os_dev, path))
|
|
return NULL;
|
|
|
|
+#ifdef __s390x__
|
|
+ return path;
|
|
+#endif
|
|
+
|
|
if (strncmp ("/dev/", path, 5) == 0)
|
|
{
|
|
char *p = path + 5;
|