mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-12 05:35:38 +00:00
make find_mtd_part work without devfs
SVN-Revision: 6466
This commit is contained in:
parent
484609eeb0
commit
0ddaeaf38b
@ -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>] ... }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user