summaryrefslogtreecommitdiff
path: root/libre/grub-legacy/i2o.patch
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2014-08-28 00:17:28 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2014-08-28 00:17:28 -0300
commit85d915ce08f83d640afabbb50558d8a1c0c9a49c (patch)
tree99e85f35fe3c89edb198b28afab1c3888a786c91 /libre/grub-legacy/i2o.patch
parent0ff008e3c9dcc5ef088f481dfff3dcd121575598 (diff)
downloadabslibre-85d915ce08f83d640afabbb50558d8a1c0c9a49c.tar.gz
abslibre-85d915ce08f83d640afabbb50558d8a1c0c9a49c.tar.bz2
abslibre-85d915ce08f83d640afabbb50558d8a1c0c9a49c.zip
move [libre]/grub-legacy to [pcr]
Diffstat (limited to 'libre/grub-legacy/i2o.patch')
-rw-r--r--libre/grub-legacy/i2o.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/libre/grub-legacy/i2o.patch b/libre/grub-legacy/i2o.patch
deleted file mode 100644
index 2af846c90..000000000
--- a/libre/grub-legacy/i2o.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-Only in grub-0.94/docs: grub.info
-Only in grub-0.94/docs: multiboot.info
-diff -ur grub-0.94/lib/device.c grub-0.94.new/lib/device.c
---- grub-0.94/lib/device.c 2004-05-07 04:50:36.375238696 +0200
-+++ grub-0.94.new/lib/device.c 2004-05-07 04:48:57.611253104 +0200
-@@ -419,6 +419,12 @@
- {
- sprintf (name, "/dev/rd/c%dd%d", controller, drive);
- }
-+
-+static void
-+get_i2o_disk_name (char *name, int unit)
-+{
-+ sprintf (name, "/dev/i2o/hd%c", unit + 'a');
-+}
- #endif
-
- /* Check if DEVICE can be read. If an error occurs, return zero,
-@@ -789,6 +795,26 @@
- }
- }
- }
-+
-+ /* I2O disks. */
-+ for (i = 0; i < 8; i++)
-+ {
-+ char name[16];
-+
-+ get_i2o_disk_name (name, i);
-+ 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. */