* conf/sparc64-ieee1275.rmk: Fix build due to missing '\'.
+ * disk/ieee1275/ofdisk.c (grub_ofdisk_iterate): Bypass cdrom
+ devices, and do not traverse down under controller nodes.
+
2009-05-04 Robert Millan <rmh.grub@aybabtu.com>
* include/grub/i386/linux.h (GRUB_LINUX_VID_MODE_VESA_START): Set
}
}
- if (! grub_strcmp (alias->type, "block"))
+ if (! grub_strcmp (alias->type, "block") &&
+ grub_strcmp (alias->name, "cdrom"))
ret = hook (alias->name);
- else if ((! grub_strcmp (alias->type, "scsi"))
- || (! grub_strcmp (alias->type, "ide"))
- || (! grub_strcmp (alias->type, "ata")))
- /* Search for block-type children of these bus controllers. */
- ret = grub_children_iterate (alias->name, dev_iterate);
return ret;
}