From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1Vi1aM-0000wV-OE for mharc-grub-devel@gnu.org; Sun, 17 Nov 2013 07:36:18 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58909) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vi1aG-0000w9-Gr for grub-devel@gnu.org; Sun, 17 Nov 2013 07:36:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vi1aB-0003AH-Kl for grub-devel@gnu.org; Sun, 17 Nov 2013 07:36:12 -0500 Received: from smtp.citrix.com ([66.165.176.89]:31416) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vi1aB-0003A7-GV for grub-devel@gnu.org; Sun, 17 Nov 2013 07:36:07 -0500 X-IronPort-AV: E=Sophos;i="4.93,718,1378857600"; d="scan'208";a="75303075" Received: from accessns.citrite.net (HELO FTLPEX01CL02.citrite.net) ([10.9.154.239]) by FTLPIPO01.CITRIX.COM with ESMTP; 17 Nov 2013 12:36:05 +0000 Received: from norwich.cam.xci-test.com (10.80.248.129) by smtprelay.citrix.com (10.13.107.79) with Microsoft SMTP Server id 14.2.342.4; Sun, 17 Nov 2013 07:36:05 -0500 Received: from marilith-n13-p0.uk.xensource.com ([10.80.229.115] helo=marilith-n13.uk.xensource.com.) by norwich.cam.xci-test.com with esmtp (Exim 4.72) (envelope-from ) id 1Vi1a8-0007C3-Os; Sun, 17 Nov 2013 12:36:04 +0000 From: Ian Campbell To: Subject: [PATCH] * grub-core/disk/uboot/ubootdisk.c: Include SCSI disks. Date: Sun, 17 Nov 2013 12:36:04 +0000 Message-ID: <1384691764-18448-1-git-send-email-ijc@hellion.org.uk> X-Mailer: git-send-email 1.7.10.4 MIME-Version: 1.0 Content-Type: text/plain X-DLP: MIA1 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 66.165.176.89 Cc: Colin Watson , Ian Campbell 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: Sun, 17 Nov 2013 12:36:17 -0000 --- ChangeLog | 4 ++++ grub-core/disk/uboot/ubootdisk.c | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8a6f0ed..aa4f4cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-11-17 Ian Campbell + + * grub-core/disk/uboot/ubootdisk.c: Include SCSI disks. + 2013-11-17 Vladimir Serbinenko * tests/grub_func_test.in: Increase memory reservation as on EFI we need diff --git a/grub-core/disk/uboot/ubootdisk.c b/grub-core/disk/uboot/ubootdisk.c index f2c7a6a..a5ce07a 100644 --- a/grub-core/disk/uboot/ubootdisk.c +++ b/grub-core/disk/uboot/ubootdisk.c @@ -47,6 +47,7 @@ grub_ubootdisk_register (struct device_info *newdev) { case DT_STOR_IDE: case DT_STOR_SATA: + case DT_STOR_SCSI: case DT_STOR_MMC: case DT_STOR_USB: /* hd */ -- 1.7.10.4