]> git.pld-linux.org Git - packages/grub.git/commitdiff
- http://svn.pardus.org.tr/viewcvs/2007/system/base/grub/files/cciss-devicemap.patch...
authormarcus <marcus@pld-linux.org>
Fri, 22 Feb 2008 08:39:46 +0000 (08:39 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    grub-cciss-devicemap.patch -> 1.1

grub-cciss-devicemap.patch [new file with mode: 0644]

diff --git a/grub-cciss-devicemap.patch b/grub-cciss-devicemap.patch
new file mode 100644 (file)
index 0000000..2815d8a
--- /dev/null
@@ -0,0 +1,57 @@
+diff -Nur grub-0.97-old/lib/device.c grub-0.97/lib/device.c
+--- grub-0.97-old/lib/device.c 2007-05-16 15:42:56.103323942 +0300
++++ grub-0.97/lib/device.c     2007-05-16 15:43:01.129559838 +0300
+@@ -544,6 +544,12 @@
+ }
+ static void
++get_cciss_disk_name (char *name, int controller, int drive)
++{
++  sprintf (name, "/dev/cciss/c%dd%d", controller, drive);
++}
++
++static void
+ get_ataraid_disk_name (char *name, int unit)
+ {
+   sprintf (name, "/dev/ataraid/d%c", unit + '0');
+@@ -971,6 +977,40 @@
+           }
+       }
+   }
++
++  /* This is for CCISS, its like the DAC960  - we have
++     /dev/cciss/<controller>d<logical drive>p<partition> 
++
++     It currently supports up to 3 controllers, 10 logical volumes
++     and 10 partitions
++
++     Code gratuitously copied from DAC960 above.
++     Horms <horms@verge.net.au> 23rd July 2004
++  */
++  {
++    int controller, drive;
++    
++    for (controller = 0; controller < 2; controller++)
++      {
++      for (drive = 0; drive < 9; drive++)
++        {
++          char name[24];
++          
++          get_cciss_disk_name (name, controller, drive);
++          if (check_device (name))
++            {
++              (*map)[num_hd + 0x80] = strdup (name);
++              assert ((*map)[num_hd + 0x80]);
++              
++              /* If the device map file is opened, write the map.  */
++              if (fp)
++                fprintf (fp, "(hd%d)\t%s\n", num_hd, name);
++              
++              num_hd++;
++            }
++        }
++      }
++  }
+ #endif /* __linux__ */
+   
+   /* OK, close the device map file if opened.  */
This page took 0.034556 seconds and 4 git commands to generate.