From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1Zk5Cy-0002B7-DX for mharc-grub-devel@gnu.org; Thu, 08 Oct 2015 03:01:44 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46896) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjVwJ-0006Eo-H3 for grub-devel@gnu.org; Tue, 06 Oct 2015 13:22:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjVwE-0003QG-M5 for grub-devel@gnu.org; Tue, 06 Oct 2015 13:22:11 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:50522) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjVwE-0003PZ-Fz for grub-devel@gnu.org; Tue, 06 Oct 2015 13:22:06 -0400 Received: from userv0021.oracle.com (userv0021.oracle.com [156.151.31.71]) by aserp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id t96HM42Q006923 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 6 Oct 2015 17:22:04 GMT Received: from userv0121.oracle.com (userv0121.oracle.com [156.151.31.72]) by userv0021.oracle.com (8.13.8/8.13.8) with ESMTP id t96HM3OW008852 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Tue, 6 Oct 2015 17:22:04 GMT Received: from abhmp0003.oracle.com (abhmp0003.oracle.com [141.146.116.9]) by userv0121.oracle.com (8.13.8/8.13.8) with ESMTP id t96HM3Bi003958 for ; Tue, 6 Oct 2015 17:22:03 GMT Received: from ca-qasparc20.us.oracle.com (/10.147.24.73) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 06 Oct 2015 10:22:03 -0700 From: Eric Snowberg To: grub-devel@gnu.org Subject: [PATCH] sparc64 - use correct drive name within grub_util_sparc_setup Date: Tue, 6 Oct 2015 13:21:43 -0400 Message-Id: <1444152103-140147-1-git-send-email-eric.snowberg@oracle.com> X-Mailer: git-send-email 1.7.1 X-Source-IP: userv0021.oracle.com [156.151.31.71] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 141.146.126.69 Cc: Eric Snowberg X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Oct 2015 17:22:14 -0000 Incorrect drive name was being passed into grub_util_sparc_setup, causing the grub-install to fail. Signed-off-by: Eric Snowberg --- util/grub-install.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/util/grub-install.c b/util/grub-install.c index df5c7e5..eabd6de 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; -- 1.7.1