[Debootloaders-devel] r53 - in trunk/yaboot: debian ybin
Aurélien GÉRÔME
ag-guest at costa.debian.org
Mon Jul 10 23:32:26 UTC 2006
Author: ag-guest
Date: 2006-07-10 23:32:26 +0000 (Mon, 10 Jul 2006)
New Revision: 53
Modified:
trunk/yaboot/debian/changelog
trunk/yaboot/ybin/ofpath
Log:
Fix booting on Firewire harddisk.
Modified: trunk/yaboot/debian/changelog
===================================================================
--- trunk/yaboot/debian/changelog 2006-07-10 23:17:33 UTC (rev 52)
+++ trunk/yaboot/debian/changelog 2006-07-10 23:32:26 UTC (rev 53)
@@ -8,8 +8,9 @@
* Fix booting with initramfs from XFS (closes: #336993).
* Fix to recognise RAID filesystems (closes: #233810).
* Fix booting Apple G5 second SATA harddisk (closes: #294081).
+ * Fix booting on Firewire harddisk (closes: #288008).
- -- Aurélien GÉRÔME <ag at roxor.cx> Tue, 11 Jul 2006 01:09:55 +0200
+ -- Aurélien GÉRÔME <ag at roxor.cx> Tue, 11 Jul 2006 01:29:42 +0200
yaboot (1.3.13-6) unstable; urgency=low
Modified: trunk/yaboot/ybin/ofpath
===================================================================
--- trunk/yaboot/ybin/ofpath 2006-07-10 23:17:33 UTC (rev 52)
+++ trunk/yaboot/ybin/ofpath 2006-07-10 23:32:26 UTC (rev 53)
@@ -303,6 +303,12 @@
DEVICE_PATH="$(printhost $SCSI_HOSTNUMBER $HOST_LIST)"
echo "${DEVICE_PATH##*device-tree}/disk at 0:$PARTITION"
;;
+ sbp2)
+ HOST_LIST="$(for i in `find /proc/device-tree -name name` ; do
+ lgrep "$i" "sbp-2" ; done)"
+ DEVICE_PATH="$(printhost $SCSI_HOSTNUMBER $HOST_LIST)"
+ echo "${DEVICE_PATH##*device-tree}/disk at 0:$PARTITION"
+ ;;
*)
echo 1>&2 "$PRG: Driver: $SCSI_DRIVER is not supported"
return 1
More information about the Debootloaders-devel
mailing list