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:
parent
e99cfaaf95
commit
dd58e15b84
2 changed files with 7 additions and 7 deletions
|
@ -168,6 +168,13 @@ include() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
find_mtd_index() {
|
||||||
|
local PART="$(grep "\"$1\"" /proc/mtd | awk -F: '{print $1}')"
|
||||||
|
local INDEX="${PART##mtd}"
|
||||||
|
|
||||||
|
echo ${INDEX}
|
||||||
|
}
|
||||||
|
|
||||||
find_mtd_part() {
|
find_mtd_part() {
|
||||||
local INDEX=$(find_mtd_index "$1")
|
local INDEX=$(find_mtd_index "$1")
|
||||||
local PREFIX=/dev/mtdblock
|
local PREFIX=/dev/mtdblock
|
||||||
|
|
|
@ -1,12 +1,5 @@
|
||||||
# Copyright (C) 2006-2013 OpenWrt.org
|
# 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() {
|
find_mtd_chardev() {
|
||||||
local INDEX=$(find_mtd_index "$1")
|
local INDEX=$(find_mtd_index "$1")
|
||||||
local PREFIX=/dev/mtd
|
local PREFIX=/dev/mtd
|
||||||
|
|
Loading…
Reference in a new issue