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.
38 lines
1.2 KiB
38 lines
1.2 KiB
7 years ago
|
From 6dcd783f22fd6253c3ee0b8a19fc6e3ea37a1cc9 Mon Sep 17 00:00:00 2001
|
||
|
From: Raymund Will <rw@suse.com>
|
||
|
Date: Fri, 10 Apr 2015 01:45:02 -0400
|
||
|
Subject: [PATCH 219/237] Use device part of chainloader target, if present.
|
||
|
|
||
|
Otherwise chainloading is restricted to '$root', which might not even
|
||
|
be readable by EFI!
|
||
|
|
||
|
v1. use grub_file_get_device_name() to get device name
|
||
|
|
||
|
Signed-off-by: Michael Chang <mchang@suse.com>
|
||
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
||
|
---
|
||
|
grub-core/loader/efi/chainloader.c | 7 +++++--
|
||
|
1 file changed, 5 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/grub-core/loader/efi/chainloader.c b/grub-core/loader/efi/chainloader.c
|
||
|
index adc8563..14ce6dd 100644
|
||
|
--- a/grub-core/loader/efi/chainloader.c
|
||
|
+++ b/grub-core/loader/efi/chainloader.c
|
||
|
@@ -223,8 +223,11 @@ grub_cmd_chainloader (grub_command_t cmd __attribute__ ((unused)),
|
||
|
if (! file)
|
||
|
goto fail;
|
||
|
|
||
|
- /* Get the root device's device path. */
|
||
|
- dev = grub_device_open (0);
|
||
|
+ /* Get the device path from filename. */
|
||
|
+ char *devname = grub_file_get_device_name (filename);
|
||
|
+ dev = grub_device_open (devname);
|
||
|
+ if (devname)
|
||
|
+ grub_free (devname);
|
||
|
if (! dev)
|
||
|
goto fail;
|
||
|
|
||
|
--
|
||
|
2.9.3
|
||
|
|