X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/35cbf0d9385af66d9ab2dad3facba3e1845ae5a7..6596e28b2d106fd5ee597bc46dd5017e2c44cd0a:/openwrt/target/default/target_skeleton/etc/init.d/S10boot?ds=inline diff --git a/openwrt/target/default/target_skeleton/etc/init.d/S10boot b/openwrt/target/default/target_skeleton/etc/init.d/S10boot index 0722dc0b7..f45eafb1e 100755 --- a/openwrt/target/default/target_skeleton/etc/init.d/S10boot +++ b/openwrt/target/default/target_skeleton/etc/init.d/S10boot @@ -1,6 +1,4 @@ #!/bin/sh -klogd -syslogd -C 16 echo "S" > /proc/jffs2_bbc mkdir -p /var/run @@ -25,18 +23,18 @@ touch /var/log/lastlog } } -cat /etc/modules /etc/modules.d/* | sed 's/^[^#]/insmod &/' 2>&-|ash +cat /etc/modules /etc/modules.d/*|sed 's/^[^#]/insmod &/' 2>&-|ash ifconfig lo 127.0.0.1 up ifconfig eth0 promisc HOSTNAME=$(nvram get wan_hostname) HOSTNAME=${HOSTNAME%%.*} -echo ${HOSTNAME:=OpenWrt} > /proc/sys/kernel/hostname +echo ${HOSTNAME:=OpenWrt}>/proc/sys/kernel/hostname vconfig set_name_type VLAN_PLUS_VID_NO_PAD # automagically run firstboot [ -z "$FAILSAFE" ] && { - { mount | grep jffs2 1>&-; } || firstboot + { mount|grep "on / type jffs2" 1>&-; } || firstboot }