remove function find_mtd_part() from /lib/functions.sh
authorMirko Vogt <mirko@openwrt.org>
Wed, 12 Dec 2012 12:38:31 +0000 (12:38 +0000)
committerMirko Vogt <mirko@openwrt.org>
Wed, 12 Dec 2012 12:38:31 +0000 (12:38 +0000)
Since all scripts using this function include /lib/functions/boot.sh -
where this function is defined as well - it can be dropped
from /lib/functions.sh. Also avoids further confusion about this
function being declared and defined in two different places.

SVN-Revision: 34641

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

index b3a3885f2d62c0e6ad182351e60a50a25b507047..2ed353b2a56075003ea909eeb10a8fdf36106f28 100755 (executable)
@@ -220,15 +220,6 @@ include() {
        done
 }
 
        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"
 strtok() { # <string> { <variable> [<separator>] ... }
        local tmp
        local val="$1"