diff options
author | Mike Baker <mbm@openwrt.org> | 2006-04-28 22:35:21 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2006-04-28 22:35:21 +0000 |
commit | 29553d8436c8aa482501115bacbc232e924898f4 (patch) | |
tree | 10064ddcb1cf5c870a37b14fd375b9e76dbeed12 /openwrt/target/linux/package/base-files | |
parent | 9e0cc6162c5b0d5c19fd4fe7ce8d17585781e64c (diff) | |
download | mtk-20170518-29553d8436c8aa482501115bacbc232e924898f4.zip mtk-20170518-29553d8436c8aa482501115bacbc232e924898f4.tar.gz mtk-20170518-29553d8436c8aa482501115bacbc232e924898f4.tar.bz2 |
update sibyte kernel, fix a few remaining bugs
SVN-Revision: 3712
Diffstat (limited to 'openwrt/target/linux/package/base-files')
3 files changed, 21 insertions, 0 deletions
diff --git a/openwrt/target/linux/package/base-files/files/sibyte-2.6/etc/config/network b/openwrt/target/linux/package/base-files/files/sibyte-2.6/etc/config/network new file mode 100644 index 0000000..2cc9e26 --- /dev/null +++ b/openwrt/target/linux/package/base-files/files/sibyte-2.6/etc/config/network @@ -0,0 +1,12 @@ +# Network configuration file + +## LAN configuration +lan_ifname="br0" +lan_ifnames="eth0 ath0" +lan_proto="static" +lan_ipaddr="192.168.1.1" +lan_netmask="255.255.255.0" + +## WAN configuration +wan_ifname="" +wan_proto="none" diff --git a/openwrt/target/linux/package/base-files/files/sibyte-2.6/etc/inittab b/openwrt/target/linux/package/base-files/files/sibyte-2.6/etc/inittab new file mode 100644 index 0000000..6eef29e --- /dev/null +++ b/openwrt/target/linux/package/base-files/files/sibyte-2.6/etc/inittab @@ -0,0 +1,3 @@ +::sysinit:/etc/init.d/rcS +duart/0::askfirst:/bin/ash --login +#tts/1::askfirst:/bin/ash --login diff --git a/openwrt/target/linux/package/base-files/files/sibyte-2.6/init b/openwrt/target/linux/package/base-files/files/sibyte-2.6/init new file mode 100755 index 0000000..1f98589 --- /dev/null +++ b/openwrt/target/linux/package/base-files/files/sibyte-2.6/init @@ -0,0 +1,6 @@ +#!/bin/ash +mount none /dev -t devfs +mount none /proc -t proc +mount_root failsafe +mount -o remount,rw /dev/root / +exec /bin/busybox init |