base-files: add back missing function for find_mtd_part to /lib/functions.sh (fixes #15496)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 40426
This commit is contained in:
Felix Fietkau 2014-04-08 21:17:49 +00:00
parent e99cfaaf95
commit dd58e15b84
2 changed files with 7 additions and 7 deletions

View File

@ -168,6 +168,13 @@ include() {
done
}
find_mtd_index() {
local PART="$(grep "\"$1\"" /proc/mtd | awk -F: '{print $1}')"
local INDEX="${PART##mtd}"
echo ${INDEX}
}
find_mtd_part() {
local INDEX=$(find_mtd_index "$1")
local PREFIX=/dev/mtdblock

View File

@ -1,12 +1,5 @@
# Copyright (C) 2006-2013 OpenWrt.org
find_mtd_index() {
local PART="$(grep "\"$1\"" /proc/mtd | awk -F: '{print $1}')"
local INDEX="${PART##mtd}"
echo ${INDEX}
}
find_mtd_chardev() {
local INDEX=$(find_mtd_index "$1")
local PREFIX=/dev/mtd