add lookup function for mtd parts
authorFelix Fietkau <nbd@openwrt.org>
Thu, 26 Oct 2006 01:35:50 +0000 (01:35 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 26 Oct 2006 01:35:50 +0000 (01:35 +0000)
SVN-Revision: 5299

package/base-files/default/etc/functions.sh

index 2abb6f81c9079c9ea586901bd095b638906b1b9a..bf87548ca53c8ad83feee2edbccfd6f09ee37ca6 100755 (executable)
@@ -110,3 +110,10 @@ include() {
                . $file
        done
 }
+
+find_mtd_part() {
+       local PART="$(grep "\"$1\"" /proc/mtd | awk -F: '{print $1}')"
+       PART="${PART##mtd}"
+       echo "${PART:+/dev/mtdblock/$PART}"
+}
+