diff options
author | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-23 21:44:17 +0000 |
---|---|---|
committer | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-23 21:44:17 +0000 |
commit | 0dc9c4c30bd3e600809c64c4f8ca244c23e89888 (patch) | |
tree | 0be7546e2a40d9732aea1519da751c649ff417c4 /openwrt/target/default/target_skeleton/sbin | |
parent | 55a26ce7cb6f702507d8413b018b6dfcb4d16c64 (diff) |
hide some non-critical error messages; prevent newbie bug reports
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1028 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/default/target_skeleton/sbin')
-rwxr-xr-x | openwrt/target/default/target_skeleton/sbin/ifup | 4 | ||||
-rwxr-xr-x | openwrt/target/default/target_skeleton/sbin/mount_root | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/openwrt/target/default/target_skeleton/sbin/ifup b/openwrt/target/default/target_skeleton/sbin/ifup index f3230ba410..9759f8d4d5 100755 --- a/openwrt/target/default/target_skeleton/sbin/ifup +++ b/openwrt/target/default/target_skeleton/sbin/ifup @@ -10,10 +10,10 @@ if_valid $if || return - $DEBUG ifconfig $if down + $DEBUG ifconfig $if down 2>&- if [ "${if%%[0-9]}" = "br" ]; then stp=$(nvram get ${type}_stp) - $DEBUG brctl delbr $if + $DEBUG brctl delbr $if 2>&- $DEBUG brctl addbr $if $DEBUG brctl setfd $if 0 $DEBUG brctl stp $if ${stp:-0} diff --git a/openwrt/target/default/target_skeleton/sbin/mount_root b/openwrt/target/default/target_skeleton/sbin/mount_root index 7a8184745d..eef55b4bdb 100755 --- a/openwrt/target/default/target_skeleton/sbin/mount_root +++ b/openwrt/target/default/target_skeleton/sbin/mount_root @@ -17,7 +17,7 @@ if [ "$1" != "failsafe" ]; then pivot_root /jffs /jffs/rom mount none /proc -t proc mount none /dev -t devfs - umount rom/proc rom/dev + umount /rom/proc rom/dev >&- fi fi mount none /tmp -t tmpfs size=50% |