From: Felix Fietkau Date: Thu, 26 Oct 2006 01:35:50 +0000 (+0000) Subject: add lookup function for mtd parts X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=6f9890b35cb4d140ae3e6e0f5ea33291d820a0eb;p=openwrt%2Fsvn-archive%2Farchive.git add lookup function for mtd parts SVN-Revision: 5299 --- diff --git a/package/base-files/default/etc/functions.sh b/package/base-files/default/etc/functions.sh index 2abb6f81c9..bf87548ca5 100755 --- a/package/base-files/default/etc/functions.sh +++ b/package/base-files/default/etc/functions.sh @@ -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}" +} +