Revision: 2157
          http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2157
Author:   robertmh
Date:     2009-05-02 16:55:35 +0000 (Sat, 02 May 2009)
Log Message:
-----------
2009-05-02  Robert Millan  <[email protected]>

        * util/deviceiter.c (grub_util_iterate_devices): Increase max drive
        count to 16 for CCISS and IDA.

Modified Paths:
--------------
    trunk/grub2/ChangeLog
    trunk/grub2/util/deviceiter.c

Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog       2009-05-02 15:24:28 UTC (rev 2156)
+++ trunk/grub2/ChangeLog       2009-05-02 16:55:35 UTC (rev 2157)
@@ -1,5 +1,10 @@
 2009-05-02  Robert Millan  <[email protected]>
 
+       * util/deviceiter.c (grub_util_iterate_devices): Increase max drive
+       count to 16 for CCISS and IDA.
+
+2009-05-02  Robert Millan  <[email protected]>
+
        * normal/menu_text.c  (grub_wait_after_message): Print a newline
        after waiting for user input.
 

Modified: trunk/grub2/util/deviceiter.c
===================================================================
--- trunk/grub2/util/deviceiter.c       2009-05-02 15:24:28 UTC (rev 2156)
+++ trunk/grub2/util/deviceiter.c       2009-05-02 16:55:35 UTC (rev 2157)
@@ -552,7 +552,7 @@
 
     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 @@
 
     for (controller = 0; controller < 3; controller++)
       {
-       for (drive = 0; drive < 10; drive++)
+       for (drive = 0; drive < 16; drive++)
          {
            char name[24];
 



Reply via email to