X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=blobdiff_plain;f=ybin%2Fofpath;h=d596b8b226eb14c4ed7ea997203ce7ea67b77911;hp=4c4ceaa20b537e3b707b659485e238af3447d828;hb=6a6a039f03909f5cdf62ef94522eb1a70b7e792d;hpb=eb8b0d5d9f4823a7033ef2baa1cababd4b5574e1 diff --git a/ybin/ofpath b/ybin/ofpath index 4c4ceaa..d596b8b 100755 --- a/ybin/ofpath +++ b/ybin/ofpath @@ -27,7 +27,7 @@ PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin" PRG="${0##*/}" -VERSION=1.0.6-pre2 +VERSION=1.0.6 DEBUG=0 export LC_COLLATE=C @@ -314,7 +314,7 @@ scsi_ofpath() ide_ofpath() { if [ ! -L "/proc/ide/$DEVNODE" ] ; then - echo 2>&1 "$PRG: /dev/$DEVNODE: Device not configured" + echo 1>&2 "$PRG: /dev/$DEVNODE: Device not configured" return 1 fi @@ -326,7 +326,7 @@ ide_ofpath() case "$(uname -r)" in 2.5.*|2.6.0*|2.6.1|2.6.1-*|2.6.2|2.6.2-*) - echo "$PRG: Linux kernel `uname -r` is not supported" + echo 1>&2 "$PRG: Linux kernel `uname -r` is not supported" return 1 ;; 2.6.*|2.7.*) @@ -336,7 +336,7 @@ ide_ofpath() fi local SYS="$(m=`grep '.* .* sysfs ' /proc/mounts | head -n 1` ; echo `d=${m#* };echo ${d%% *}`)" if [ -z "$SYS" -o ! -d "$SYS" ] ; then - echo 2>&1 "$PRG: Unable to determine sysfs mountpoint" + echo 1>&2 "$PRG: Unable to determine sysfs mountpoint" return 1 fi local OF1275IDE="${SYS}/block/${DEVNODE}/device/../../devspec" @@ -348,7 +348,7 @@ ide_ofpath() if [ ! -f "$OF1275IDE" ] ; then case "$(cat /proc/device-tree/model)" in - PowerMac3*|PowerMac4*|PowerMac5*|PowerMac6*|PowerMac7*|X*) + PowerMac3*|PowerMac4*|PowerMac5*|PowerMac6*|PowerMac7*|RackMac*) local CDROM="$(grep "^drive name:" /proc/sys/dev/cdrom/info 2> /dev/null | grep $DEVNODE)" if [ -z "$CDROM" ] ; then echo 1>&2 "$PRG: WARNING: Your kernel is too old for proper support, device may be innaccurate." @@ -397,7 +397,7 @@ ide_ofpath() local SLAVE="/@$(($(cat /proc/ide/${IDEBUS}/channel) * 2 + 1))" ;; *) - echo 2>&1 "$PRG: Unsupported IDE device type: \"$(cat /proc/device-tree${DEVSPEC}/device_type 2> /dev/null)\"" + echo 1>&2 "$PRG: Unsupported IDE device type: \"$(cat /proc/device-tree${DEVSPEC}/device_type 2> /dev/null)\"" return 1 ;; esac