add robocfg to startup if kernel 2.6, fix jffs2 compression for 2.4
SVN-Revision: 1936
This commit is contained in:
parent
c557c007b6
commit
4e11576d29
1 changed files with 9 additions and 3 deletions
|
@ -1,8 +1,9 @@
|
|||
#!/bin/sh
|
||||
. /etc/nvram.sh
|
||||
if [ "$(uname -r|grep 2.4)" = "0" ];then
|
||||
echo "S" > /proc/jffs2_bbc
|
||||
fi
|
||||
|
||||
[ "$(uname -r|grep -c 2.4)" = "1" ] && {
|
||||
echo "S" > /proc/jffs2_bbc
|
||||
}
|
||||
|
||||
mkdir -p /var/run
|
||||
mkdir -p /var/log
|
||||
|
@ -32,6 +33,11 @@ sed 's/^[^#]/insmod &/' /etc/modules /etc/modules.d/* 2>&-|ash
|
|||
ifconfig lo 127.0.0.1 up
|
||||
ifconfig eth0 promisc
|
||||
|
||||
[ "$(uname -r|grep -c 2.6)" = "1" ] && [ -x /sbin/robocfg ] && {
|
||||
robocfg switch disable vlans enable reset vlan 0 ports "0 1 2 3 5t" vlan 1 ports "4 5t" port 4 state enabled stp none switch enable
|
||||
robocfg show
|
||||
}
|
||||
|
||||
HOSTNAME=$(nvram get wan_hostname)
|
||||
HOSTNAME=${HOSTNAME%%.*}
|
||||
echo ${HOSTNAME:=OpenWrt}>/proc/sys/kernel/hostname
|
||||
|
|
Loading…
Reference in a new issue