diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-09-30 11:36:37 +0000 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-09-30 11:36:37 +0000 |
commit | b5a670d53695a07377191132763ba8128932f197 (patch) | |
tree | 5f1ca245d094e4db9a2cf6a04113af5eca33075a /openwrt/package/base-files/default/sbin | |
parent | d1c1fb556ba6d32095cac8cf6000f34926835bba (diff) | |
download | mtk-20170518-b5a670d53695a07377191132763ba8128932f197.zip mtk-20170518-b5a670d53695a07377191132763ba8128932f197.tar.gz mtk-20170518-b5a670d53695a07377191132763ba8128932f197.tar.bz2 |
check if some /proc files exist, before using it, for systems without diag kernel modul
SVN-Revision: 2008
Diffstat (limited to 'openwrt/package/base-files/default/sbin')
-rwxr-xr-x | openwrt/package/base-files/default/sbin/mount_root | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/sbin/mount_root b/openwrt/package/base-files/default/sbin/mount_root index ae78ee4..32a6ee5 100755 --- a/openwrt/package/base-files/default/sbin/mount_root +++ b/openwrt/package/base-files/default/sbin/mount_root @@ -4,7 +4,7 @@ if [ "$1" != "failsafe" ]; then mount | grep jffs2 >&- if [ $? = 0 ] ; then if [ $(cat /proc/mtd | wc -l) = 6 ]; then - echo 5 > /proc/sys/diag + [ -f /proc/sys/diag ] && echo 5 > /proc/sys/diag mtd unlock linux mtd erase OpenWrt jffs2root --move |