hide some non-critical error messages; prevent newbie bug reports
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 23 May 2005 21:44:17 +0000 (21:44 +0000)
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 23 May 2005 21:44:17 +0000 (21:44 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1028 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/default/target_skeleton/bin/firstboot
target/default/target_skeleton/etc/init.d/rcS
target/default/target_skeleton/sbin/ifup
target/default/target_skeleton/sbin/mount_root

index 2e7481d..cef258c 100755 (executable)
@@ -1,6 +1,11 @@
 #!/bin/sh
 # $Id$
 
+mount | grep squashfs >&- || {
+       echo "You do not have a squashfs partition; aborting"
+       echo "(firstboot cannot be run on jffs2 based firmwares)"
+       return
+}
 
 [ -f "/tmp/.firstboot" ] && {
        echo "firstboot is already running"
index d52152c..eeed18b 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 syslogd -C 16
 klogd
-for i in /etc/init.d/S* ;do
-  $i start 2>&1 | logger -s -p 6 -t ''
-done
+for i in /etc/init.d/S*do
+  $i start 2>&1
+done | logger -s -p 6 -t ''
index f3230ba..9759f8d 100755 (executable)
 
   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}
index 7a81847..eef55b4 100755 (executable)
@@ -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%