projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d60a55e
)
add lookup function for mtd parts
author
Felix Fietkau
<nbd@openwrt.org>
Thu, 26 Oct 2006 01:35:50 +0000
(
01:35
+0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Thu, 26 Oct 2006 01:35:50 +0000
(
01:35
+0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5299
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/default/etc/functions.sh
patch
|
blob
|
history
diff --git
a/package/base-files/default/etc/functions.sh
b/package/base-files/default/etc/functions.sh
index
2abb6f8
..
bf87548
100755
(executable)
--- 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}"
+}
+