On Sat, Apr 11, 2009 at 01:05:19AM +0200, phcoder wrote:
> Robert Millan wrote:
>> On Wed, Mar 04, 2009 at 10:16:29PM +0100, Robert Millan wrote:
else if (major == SCSI_DISK0_MAJOR)
-sprintf (name, "/dev/sd%c", 'a' + minor / 16);
+grub_util_getdiskname_scsi (name, 0, minor
Robert Millan wrote:
On Wed, Mar 04, 2009 at 10:16:29PM +0100, Robert Millan wrote:
else if (major == SCSI_DISK0_MAJOR)
-sprintf (name, "/dev/sd%c", 'a' + minor / 16);
+grub_util_getdiskname_scsi (name, 0, minor / 16);
+ else if (major == SCSI_DISK1_MAJOR)
+grub_util_getdiskname_
On Wed, Mar 04, 2009 at 10:16:29PM +0100, Robert Millan wrote:
> >else if (major == SCSI_DISK0_MAJOR)
> > -sprintf (name, "/dev/sd%c", 'a' + minor / 16);
> > +grub_util_getdiskname_scsi (name, 0, minor / 16);
> > + else if (major == SCSI_DISK1_MAJOR)
> > +grub_util_getdiskname_scsi
On Wed, Mar 04, 2009 at 04:35:09PM +, Colin Watson wrote:
> Linux's Documentation/devices.txt file says that up to 256 SCSI disks
> are supported. GRUB currently only supports the first 16. Wikimedia
> filed an Ubuntu bug report about this
> (https://bugs.launchpad.net/bugs/335174), so here's a
Linux's Documentation/devices.txt file says that up to 256 SCSI disks
are supported. GRUB currently only supports the first 16. Wikimedia
filed an Ubuntu bug report about this
(https://bugs.launchpad.net/bugs/335174), so here's a patch to extend
this. (I really haven't been able to test this much a