make find_mtd_part work without devfs

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6466 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2007-03-02 19:01:49 +00:00
parent 3249931be4
commit 36dacf1038
1 changed files with 3 additions and 1 deletions

View File

@ -151,9 +151,11 @@ include() {
find_mtd_part() { find_mtd_part() {
local PART="$(grep "\"$1\"" /proc/mtd | awk -F: '{print $1}')" local PART="$(grep "\"$1\"" /proc/mtd | awk -F: '{print $1}')"
local PREFIX=/dev/mtdblock
PART="${PART##mtd}" PART="${PART##mtd}"
echo "${PART:+/dev/mtdblock/$PART}" [ -d /dev/mtdblock ] && PREFIX=/dev/mtdblock/
echo "${PART:+$PREFIX$PART}"
} }
strtok() { # <string> { <variable> [<separator>] ... } strtok() { # <string> { <variable> [<separator>] ... }