[PATCH] remove usage of expr in ide-devfs.sh

fix_expr: remove usage of expr in ide-devfs.sh, because it may be in
/usr/bin and not available at early boot time.
This commit is contained in:
md@Linux.IT 2004-03-01 22:34:08 -08:00 committed by Greg KH
parent bd5f8e7cd1
commit b7b6562729
1 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ HOST="${2%\.[0-9]}"
TARGET="${2#[0-9]\.}"
if [ -z "${HOST#[13579]}" ]; then
HOST=`expr ${HOST} - 1`
HOST=$((${HOST} - 1))
BUS="1"
else
BUS="0"
@ -24,7 +24,7 @@ get_dev_number() {
if [ -e "${x}" ]; then
MEDIA=`cat ${x}`
if [ "${MEDIA}" = "$2" ]; then
num=`expr ${num} + 1`
num=$((${num} + 1))
fi
if [ "${x}" = "/proc/ide/${DRIVE}/media" ]; then
break
@ -32,7 +32,7 @@ get_dev_number() {
fi
done
echo `expr ${num} - 1`
echo $((${num} - 1))
}
if [ -z "$3" ]; then