Revert "remove function find_mtd_part() from /lib/functions.sh"
authorMirko Vogt <mirko@openwrt.org>
Wed, 12 Dec 2012 13:41:56 +0000 (13:41 +0000)
committerMirko Vogt <mirko@openwrt.org>
Wed, 12 Dec 2012 13:41:56 +0000 (13:41 +0000)
Reverting commit 34641.
Function find_mtd_part() is needed by some scripts deployed
for certain targets but not including boot.sh after all.
Still, all this certainly needs some love.

SVN-Revision: 34642

package/base-files/files/lib/functions.sh

index 2ed353b2a56075003ea909eeb10a8fdf36106f28..b3a3885f2d62c0e6ad182351e60a50a25b507047 100755 (executable)
@@ -220,6 +220,15 @@ include() {
        done
 }
 
+find_mtd_part() {
+       local PART="$(grep "\"$1\"" /proc/mtd | awk -F: '{print $1}')"
+       local PREFIX=/dev/mtdblock
+
+       PART="${PART##mtd}"
+       [ -d /dev/mtdblock ] && PREFIX=/dev/mtdblock/
+       echo "${PART:+$PREFIX$PART}"
+}
+
 strtok() { # <string> { <variable> [<separator>] ... }
        local tmp
        local val="$1"