diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-30 11:36:37 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-30 11:36:37 +0000 |
commit | 6f038752364538d052dfc3571242f8e0830b5106 (patch) | |
tree | edfadd4fab9f64d42ad7b53db42ecba44152a70d /package/base-files/default/sbin | |
parent | fb89cd24b7dc54f8a0b3738ddfdb692cff2ac753 (diff) |
check if some /proc files exist, before using it, for systems without diag kernel modul
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2008 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/default/sbin')
-rwxr-xr-x | package/base-files/default/sbin/mount_root | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/default/sbin/mount_root b/package/base-files/default/sbin/mount_root index ae78ee488..32a6ee548 100755 --- a/package/base-files/default/sbin/mount_root +++ b/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 |