2007-12-16 Robert Millan <rmh@aybabtu.com>
* util/grub-mkdevicemap.c (make_device_map): Iterate up to 20 for IDE disk check, since Linux is known to support 20 IDE disks. Reported by Colin Watson.
This commit is contained in:
parent
84be7599f6
commit
af680a8784
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2007-12-16 Robert Millan <rmh@aybabtu.com>
|
||||||
|
|
||||||
|
* util/grub-mkdevicemap.c (make_device_map): Iterate up to 20 for
|
||||||
|
IDE disk check, since Linux is known to support 20 IDE disks.
|
||||||
|
Reported by Colin Watson.
|
||||||
|
|
||||||
2007-12-15 Bean <bean123ch@gmail.com>
|
2007-12-15 Bean <bean123ch@gmail.com>
|
||||||
|
|
||||||
* conf/i386-pc.rmk (pkgdata_IMAGES): Add lnxboot.img.
|
* conf/i386-pc.rmk (pkgdata_IMAGES): Add lnxboot.img.
|
||||||
|
|
|
@ -417,7 +417,7 @@ make_device_map (const char *device_map, int floppy_disks)
|
||||||
#endif /* __linux__ */
|
#endif /* __linux__ */
|
||||||
|
|
||||||
/* IDE disks. */
|
/* IDE disks. */
|
||||||
for (i = 0; i < 8; i++)
|
for (i = 0; i < 20; i++)
|
||||||
{
|
{
|
||||||
char name[16];
|
char name[16];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue