1 Only in grub-0.94/docs: grub.info
2 Only in grub-0.94/docs: multiboot.info
3 diff -ur grub-0.94/lib/device.c grub-0.94.new/lib/device.c
4 --- grub-0.94/lib/device.c 2004-05-07 04:50:36.375238696 +0200
5 +++ grub-0.94.new/lib/device.c 2004-05-07 04:48:57.611253104 +0200
8 sprintf (name, "/dev/rd/c%dd%d", controller, drive);
12 +get_i2o_disk_name (char *name, int unit)
14 + sprintf (name, "/dev/i2o/hd%c", unit + 'a');
18 /* Check if DEVICE can be read. If an error occurs, return zero,
25 + for (i = 0; i < 8; i++)
29 + get_i2o_disk_name (name, i);
30 + if (check_device (name))
32 + (*map)[num_hd + 0x80] = strdup (name);
33 + assert ((*map)[num_hd + 0x80]);
35 + /* If the device map file is opened, write the map. */
37 + fprintf (fp, "(hd%d)\t%s\n", num_hd, name);
43 #endif /* __linux__ */
45 /* OK, close the device map file if opened. */