mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-27 21:38:06 +00:00
2009-05-02 Robert Millan <rmh.grub@aybabtu.com>
* util/deviceiter.c (grub_util_iterate_devices): Increase max drive count to 16 for CCISS and IDA.
This commit is contained in:
parent
6c67de152c
commit
18db813d65
@ -1,3 +1,8 @@
|
||||
2009-05-02 Robert Millan <rmh.grub@aybabtu.com>
|
||||
|
||||
* util/deviceiter.c (grub_util_iterate_devices): Increase max drive
|
||||
count to 16 for CCISS and IDA.
|
||||
|
||||
2009-05-02 Robert Millan <rmh.grub@aybabtu.com>
|
||||
|
||||
* normal/menu_text.c (grub_wait_after_message): Print a newline
|
||||
|
@ -552,7 +552,7 @@ grub_util_iterate_devices (int NESTED_FUNC_ATTR (*hook) (const char *, int),
|
||||
|
||||
for (controller = 0; controller < 3; controller++)
|
||||
{
|
||||
for (drive = 0; drive < 10; drive++)
|
||||
for (drive = 0; drive < 16; drive++)
|
||||
{
|
||||
char name[24];
|
||||
|
||||
@ -573,7 +573,7 @@ grub_util_iterate_devices (int NESTED_FUNC_ATTR (*hook) (const char *, int),
|
||||
|
||||
for (controller = 0; controller < 3; controller++)
|
||||
{
|
||||
for (drive = 0; drive < 10; drive++)
|
||||
for (drive = 0; drive < 16; drive++)
|
||||
{
|
||||
char name[24];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user