diff options
Diffstat (limited to 'target/default/target_skeleton/sbin')
-rwxr-xr-x | target/default/target_skeleton/sbin/ifup | 4 | ||||
-rwxr-xr-x | target/default/target_skeleton/sbin/mount_root | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/target/default/target_skeleton/sbin/ifup b/target/default/target_skeleton/sbin/ifup index f3230ba41..9759f8d4d 100755 --- a/target/default/target_skeleton/sbin/ifup +++ b/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/target/default/target_skeleton/sbin/mount_root b/target/default/target_skeleton/sbin/mount_root index 7a8184745..eef55b4bd 100755 --- a/target/default/target_skeleton/sbin/mount_root +++ b/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% |