X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ybin%2Fofpath;h=a5922bf893417471411f80e48a045da4f71c3c72;hb=941806a910f667c64b8ed55897ff2f5d458bc027;hp=58bb6f4b98953f5c7712743eadc04d51e803c6f7;hpb=fc172c3d66234d82994c6adf3498718515253205;p=yaboot.git diff --git a/ybin/ofpath b/ybin/ofpath index 58bb6f4..a5922bf 100755 --- a/ybin/ofpath +++ b/ybin/ofpath @@ -193,7 +193,7 @@ scsiinfo() if [ -d /sys/bus/scsi/devices -a \ -n "$(ls /sys/bus/scsi/devices 2>/dev/null)" ] ; then echo 1>&2 "$PRG: /proc/scsi/scsi does not exist" - echo 1>&2 "$PRG: Make sure you compiled your kernel with CONFIG_SCSI_PROC_FS=n" + echo 1>&2 "$PRG: Make sure you compiled your kernel with CONFIG_SCSI_PROC_FS=y" return 1 fi ;; @@ -372,8 +372,8 @@ ide_ofpath() local SLAVE="/@$(cat /proc/ide/${IDEBUS}/channel)/disk@1" ;; scsi) ## some lame controllers pretend they are scsi, hopefully all kludges are created equal. - local MASTER="/$(($(cat /proc/ide/${IDEBUS}/channel) * 2 + 0)),0" - local SLAVE="/$(($(cat /proc/ide/${IDEBUS}/channel) * 2 + 1)),0" + local MASTER="/@$(($(cat /proc/ide/${IDEBUS}/channel) * 2 + 0))" + 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)\"" @@ -868,7 +868,7 @@ if [ `uname -s` != Linux ] ; then fi ## check for ppc, i think uname -m is safe for this... -if [ `uname -m` != ppc ] ; then +if [ `uname -m` != ppc -a `uname -m` != ppc64 ] ; then echo 1>&2 "$PRG: This utility will only work on PowerPC hardware" exit 1 fi