From: Eric Snowberg Date: Tue, 6 Oct 2015 17:21:43 +0000 (-0400) Subject: sparc64 - use correct drive name within grub_util_sparc_setup X-Git-Tag: 2.02-beta3~221 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8cb4c4edbe84fe455455dd26d5763541c2824098;p=thirdparty%2Fgrub.git sparc64 - use correct drive name within grub_util_sparc_setup Incorrect drive name was being passed into grub_util_sparc_setup, causing the grub-install to fail. Signed-off-by: Eric Snowberg --- diff --git a/util/grub-install.c b/util/grub-install.c index df5c7e520..eabd6de4d 100644 --- a/util/grub-install.c +++ b/util/grub-install.c @@ -1698,7 +1698,7 @@ main (int argc, char *argv[]) /* Now perform the installation. */ if (install_bootsector) grub_util_sparc_setup (platdir, "boot.img", "core.img", - install_device, force, + install_drive, force, fs_probe, allow_floppy, 0 /* unused */ ); break;