hide some non-critical error messages; prevent newbie bug reports
SVN-Revision: 1028
This commit is contained in:
parent
665f4e542c
commit
e118e0e8ef
@ -1,6 +1,11 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $Id$
|
# $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" ] && {
|
[ -f "/tmp/.firstboot" ] && {
|
||||||
echo "firstboot is already running"
|
echo "firstboot is already running"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
syslogd -C 16
|
syslogd -C 16
|
||||||
klogd
|
klogd
|
||||||
for i in /etc/init.d/S* ;do
|
for i in /etc/init.d/S*; do
|
||||||
$i start 2>&1 | logger -s -p 6 -t ''
|
$i start 2>&1
|
||||||
done
|
done | logger -s -p 6 -t ''
|
||||||
|
@ -10,10 +10,10 @@
|
|||||||
|
|
||||||
if_valid $if || return
|
if_valid $if || return
|
||||||
|
|
||||||
$DEBUG ifconfig $if down
|
$DEBUG ifconfig $if down 2>&-
|
||||||
if [ "${if%%[0-9]}" = "br" ]; then
|
if [ "${if%%[0-9]}" = "br" ]; then
|
||||||
stp=$(nvram get ${type}_stp)
|
stp=$(nvram get ${type}_stp)
|
||||||
$DEBUG brctl delbr $if
|
$DEBUG brctl delbr $if 2>&-
|
||||||
$DEBUG brctl addbr $if
|
$DEBUG brctl addbr $if
|
||||||
$DEBUG brctl setfd $if 0
|
$DEBUG brctl setfd $if 0
|
||||||
$DEBUG brctl stp $if ${stp:-0}
|
$DEBUG brctl stp $if ${stp:-0}
|
||||||
|
@ -17,7 +17,7 @@ if [ "$1" != "failsafe" ]; then
|
|||||||
pivot_root /jffs /jffs/rom
|
pivot_root /jffs /jffs/rom
|
||||||
mount none /proc -t proc
|
mount none /proc -t proc
|
||||||
mount none /dev -t devfs
|
mount none /dev -t devfs
|
||||||
umount rom/proc rom/dev
|
umount /rom/proc rom/dev >&-
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
mount none /tmp -t tmpfs size=50%
|
mount none /tmp -t tmpfs size=50%
|
||||||
|
Loading…
Reference in New Issue
Block a user