From e27fef51834042a1b108e04927a2a91742a54327 Mon Sep 17 00:00:00 2001 From: Ulf Samuelsson Date: Thu, 3 Jul 2008 08:27:50 +0000 Subject: Add support for KwikByte KB9202 board, courtesy Brian Beattie --- .../KwikByte/kb9202/target_skeleton/etc/fstab | 11 + .../KwikByte/kb9202/target_skeleton/etc/group | 7 + .../KwikByte/kb9202/target_skeleton/etc/hostname | 1 + .../KwikByte/kb9202/target_skeleton/etc/init.d/rcS | 15 + .../KwikByte/kb9202/target_skeleton/etc/inittab | 33 +++ .../KwikByte/kb9202/target_skeleton/etc/issue | 7 + .../KwikByte/kb9202/target_skeleton/etc/issue.net | 6 + .../kb9202/target_skeleton/etc/ld.so.cache | Bin 0 -> 669 bytes .../KwikByte/kb9202/target_skeleton/etc/ld.so.conf | 0 .../KwikByte/kb9202/target_skeleton/etc/mdev.conf | 50 ++++ .../KwikByte/kb9202/target_skeleton/etc/mtab | 1 + .../kb9202/target_skeleton/etc/network/interfaces | 20 ++ .../KwikByte/kb9202/target_skeleton/etc/passwd | 13 + .../KwikByte/kb9202/target_skeleton/etc/profile | 2 + .../KwikByte/kb9202/target_skeleton/etc/protocols | 31 +++ .../KwikByte/kb9202/target_skeleton/etc/services | 302 +++++++++++++++++++++ .../KwikByte/kb9202/target_skeleton/etc/shadow | 12 + .../kb9202/target_skeleton/etc/vsftpd.conf | 32 +++ .../kb9202/target_skeleton/root/.ash_history | 15 + .../kb9202/target_skeleton/sbin/automount.script | 21 ++ .../usr/share/udhcpc/default.script | 40 +++ .../device/KwikByte/kb9202/target_skeleton/var/adm | 1 + .../device/KwikByte/kb9202/target_skeleton/var/tmp | 1 + 23 files changed, 621 insertions(+) create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/fstab create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/group create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/hostname create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/init.d/rcS create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/inittab create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/issue create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/issue.net create mode 100644 target/device/KwikByte/kb9202/target_skeleton/etc/ld.so.cache create mode 100644 target/device/KwikByte/kb9202/target_skeleton/etc/ld.so.conf create mode 100644 target/device/KwikByte/kb9202/target_skeleton/etc/mdev.conf create mode 120000 target/device/KwikByte/kb9202/target_skeleton/etc/mtab create mode 100644 target/device/KwikByte/kb9202/target_skeleton/etc/network/interfaces create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/passwd create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/profile create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/protocols create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/services create mode 100755 target/device/KwikByte/kb9202/target_skeleton/etc/shadow create mode 100644 target/device/KwikByte/kb9202/target_skeleton/etc/vsftpd.conf create mode 100644 target/device/KwikByte/kb9202/target_skeleton/root/.ash_history create mode 100755 target/device/KwikByte/kb9202/target_skeleton/sbin/automount.script create mode 100755 target/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script create mode 120000 target/device/KwikByte/kb9202/target_skeleton/var/adm create mode 120000 target/device/KwikByte/kb9202/target_skeleton/var/tmp (limited to 'target/device/KwikByte/kb9202/target_skeleton') diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/fstab b/target/device/KwikByte/kb9202/target_skeleton/etc/fstab new file mode 100755 index 000000000..561fbbcbc --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/fstab @@ -0,0 +1,11 @@ +# /etc/fstab: static file system information. +# +# +/dev/root / ext2 rw,noauto 0 1 +proc /proc proc defaults 0 0 +devpts /dev/pts devpts defaults,gid=5,mode=620 0 0 +tmpfs /tmp tmpfs defaults 0 0 +none /proc/bus/usb usbfs defaults 0 0 +/dev/sys /sys sysfs defaults 0 0 + + diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/group b/target/device/KwikByte/kb9202/target_skeleton/etc/group new file mode 100755 index 000000000..547f03331 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/group @@ -0,0 +1,7 @@ +root:x:0:root +bin:x:1:root,bin,daemon +daemon:x:2:root,bin,daemon +adm:x:4:root,adm,daemon +tty:x:5: +lp:x:7:daemon,lp +nobody:x:99: diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/hostname b/target/device/KwikByte/kb9202/target_skeleton/etc/hostname new file mode 100755 index 000000000..0bbf8da6f --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/hostname @@ -0,0 +1 @@ +KB9202B diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/init.d/rcS b/target/device/KwikByte/kb9202/target_skeleton/etc/init.d/rcS new file mode 100755 index 000000000..8a7684c06 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/init.d/rcS @@ -0,0 +1,15 @@ +#!/bin/sh + +/bin/mount -n -t proc proc /proc +/bin/mount -o remount,rw / + +/bin/mount /sys +echo /sbin/mdev > /proc/sys/kernel/hotplug +/sbin/mdev -a + +/bin/mount -a +/bin/hostname -F /etc/hostname +/sbin/ifconfig lo 127.0.0.1 up +/sbin/route add -net 127.0.0.0 netmask 255.0.0.0 lo +/sbin/ifup eth0 +#telnetd -l /bin/sh diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/inittab b/target/device/KwikByte/kb9202/target_skeleton/etc/inittab new file mode 100755 index 000000000..b2da8ed49 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/inittab @@ -0,0 +1,33 @@ +# /etc/inittab +# +# Copyright (C) 2001 Erik Andersen +# +# Note: BusyBox init doesn't support runlevels. The runlevels field is +# completely ignored by BusyBox init. If you want runlevels, use +# sysvinit. +# +# Format for each entry: ::: +# +# id == tty to run on, or empty for /dev/console +# runlevels == ignored +# action == one of sysinit, respawn, askfirst, wait, and once +# process == program to run + +# Startup the system +# now run any rc scripts +null::sysinit:/etc/init.d/rcS + +# Put a getty on the serial port +ttyS0::respawn:/sbin/getty -L ttyS0 115200 vt100 +#tty1::respawn:-/bin/sh +#tty2::respawn:-/bin/sh + +# Stuff to do for the 3-finger salute +::ctrlaltdel:/sbin/reboot + +# Stuff to do before rebooting +null::shutdown:/usr/bin/killall klogd +null::shutdown:/usr/bin/killall syslogd +null::shutdown:/bin/umount -a -r +null::shutdown:/sbin/swapoff -a + diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/issue b/target/device/KwikByte/kb9202/target_skeleton/etc/issue new file mode 100755 index 000000000..d06cec349 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/issue @@ -0,0 +1,7 @@ + + + ---------------------------------- + - - + - Sample file system for KB9202B - + - - + ---------------------------------- diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/issue.net b/target/device/KwikByte/kb9202/target_skeleton/etc/issue.net new file mode 100755 index 000000000..6cbd9545b --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/issue.net @@ -0,0 +1,6 @@ + + ---------------------------------- + - - + - Sample file system for KB9202B - + - - + ---------------------------------- diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/ld.so.cache b/target/device/KwikByte/kb9202/target_skeleton/etc/ld.so.cache new file mode 100644 index 000000000..056a438cf Binary files /dev/null and b/target/device/KwikByte/kb9202/target_skeleton/etc/ld.so.cache differ diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/ld.so.conf b/target/device/KwikByte/kb9202/target_skeleton/etc/ld.so.conf new file mode 100644 index 000000000..e69de29bb diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/mdev.conf b/target/device/KwikByte/kb9202/target_skeleton/etc/mdev.conf new file mode 100644 index 000000000..534dc48ac --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/mdev.conf @@ -0,0 +1,50 @@ +# mdev.conf for KB9202 +# +# Syntax: +# : [{@,$,*} ] +# @: run after creating +# $: run before removal +# *: like @ and $ at the same time +# is run inside /dev using system() + +full 0:0 666 +null 0:0 777 +zero 0:0 666 + +random 0:0 444 +urandom 0:0 444 + +console 0:5 0600 +kmem 0:9 000 +mem 0:9 0640 +ptmx 0:5 0660 + +sd[a-d] 0:6 0660 +sd[a-d][1-8] 0:6 0660 *(/sbin/automount.script) +sdb.* 0:6 0660 +hda.* 0:6 0660 +hdb.* 0:6 0660 +mtd.* 0:6 0660 +mmc.* 0:6 0660 + +# Move input devices to input directory +event.* 0:0 0660 @(mkdir -p input&&mv $MDEV input) +mice 0:0 0660 @(mkdir -p input&&mv $MDEV input) +mouse.* 0:0 0660 @(mkdir -p input&&mv $MDEV input) + +# Move sound devices to sound directory +pcm.* 0:101 0660 @(mkdir -p snd&&mv $MDEV snd) +seq 0:101 0660 @(mkdir -p snd&&mv $MDEV snd) +timer 0:101 0660 @(mkdir -p snd&&mv $MDEV snd) +control.* 0:101 0660 @(mkdir -p snd&&mv $MDEV snd) + +tty 0:5 0660 +tty0.* 0:5 0660 +tty1.* 0:5 0660 +tty2.* 0:5 0660 +tty3.* 0:5 0660 +tty4.* 0:5 0660 +tty5.* 0:5 0660 +tty6.* 0:5 0660 + +ttyS.* 0:20 640 diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/mtab b/target/device/KwikByte/kb9202/target_skeleton/etc/mtab new file mode 120000 index 000000000..e1c204547 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/mtab @@ -0,0 +1 @@ +../proc/mounts \ No newline at end of file diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/network/interfaces b/target/device/KwikByte/kb9202/target_skeleton/etc/network/interfaces new file mode 100644 index 000000000..0bb96fd83 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/network/interfaces @@ -0,0 +1,20 @@ +# /etc/network/interfaces -- configuration file for ifup/ifdown +# The loopback interface +# automatically added when upgrading +auto lo +iface lo inet loopback + +# the first network card - this entry was created during the +# installation automatically added when upgrading + +# static IP mode +# uncomment the next lines in this section (remove leading '#' characters) +#auto eth0 +#iface eth0 inet static +# address 192.160.1.79 +# netmask 255.255.255.0 + +# DHCP mode +# uncomment the next lines in this section (remove leading '#' characters) +#auto eth0 +#iface eth0 inet dhcp diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/passwd b/target/device/KwikByte/kb9202/target_skeleton/etc/passwd new file mode 100755 index 000000000..e0f473fc7 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/passwd @@ -0,0 +1,13 @@ +root:x:0:0:root:/root:/bin/sh +daemon:x:1:1:daemon:/usr/sbin:/bin/sh +bin:x:2:2:bin:/bin:/bin/sh +sys:x:3:3:sys:/dev:/bin/sh +sync:x:4:100:sync:/bin:/bin/sync +mail:x:8:8:mail:/var/spool/mail:/bin/sh +proxy:x:13:13:proxy:/bin:/bin/sh +www-data:x:33:33:www-data:/var/www:/bin/sh +backup:x:34:34:backup:/var/backups:/bin/sh +operator:x:37:37:Operator:/var:/bin/sh +sshd:x:103:99:Operator:/var:/bin/sh +nobody:x:99:99:nobody:/home:/bin/sh +default:x:1000:1000:Default non-root user:/home/default:/bin/sh diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/profile b/target/device/KwikByte/kb9202/target_skeleton/etc/profile new file mode 100755 index 000000000..01d7b79db --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/profile @@ -0,0 +1,2 @@ +PATH="/usr/sbin:/bin:/usr/bin:/sbin" +PS1="[\u@\h:\w] " diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/protocols b/target/device/KwikByte/kb9202/target_skeleton/etc/protocols new file mode 100755 index 000000000..76d3a2ed2 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/protocols @@ -0,0 +1,31 @@ +# /etc/protocols: +# $Id: protocols,v 1.1.1.1 2001/09/12 19:03:24 andersee Exp $ +# +# Internet (IP) protocols +# +# from: @(#)protocols 5.1 (Berkeley) 4/17/89 +# +# Updated for NetBSD based on RFC 1340, Assigned Numbers (July 1992). + +ip 0 IP # internet protocol, pseudo protocol number +icmp 1 ICMP # internet control message protocol +igmp 2 IGMP # Internet Group Management +ggp 3 GGP # gateway-gateway protocol +ipencap 4 IP-ENCAP # IP encapsulated in IP (officially ``IP'') +st 5 ST # ST datagram mode +tcp 6 TCP # transmission control protocol +egp 8 EGP # exterior gateway protocol +pup 12 PUP # PARC universal packet protocol +udp 17 UDP # user datagram protocol +hmp 20 HMP # host monitoring protocol +xns-idp 22 XNS-IDP # Xerox NS IDP +rdp 27 RDP # "reliable datagram" protocol +iso-tp4 29 ISO-TP4 # ISO Transport Protocol class 4 +xtp 36 XTP # Xpress Tranfer Protocol +ddp 37 DDP # Datagram Delivery Protocol +idpr-cmtp 39 IDPR-CMTP # IDPR Control Message Transport +rspf 73 RSPF #Radio Shortest Path First. +vmtp 81 VMTP # Versatile Message Transport +ospf 89 OSPFIGP # Open Shortest Path First IGP +ipip 94 IPIP # Yet Another IP encapsulation +encap 98 ENCAP # Yet Another IP encapsulation diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/services b/target/device/KwikByte/kb9202/target_skeleton/etc/services new file mode 100755 index 000000000..9e1c917a5 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/services @@ -0,0 +1,302 @@ +# /etc/services: +# $Id: services,v 1.2 2003/06/14 00:12:17 timriker Exp $ +# +# Network services, Internet style +# +# Note that it is presently the policy of IANA to assign a single well-known +# port number for both TCP and UDP; hence, most entries here have two entries +# even if the protocol doesn't support UDP operations. +# Updated from RFC 1700, ``Assigned Numbers'' (October 1994). Not all ports +# are included, only the more common ones. + +tcpmux 1/tcp # TCP port service multiplexer +echo 7/tcp +echo 7/udp +discard 9/tcp sink null +discard 9/udp sink null +systat 11/tcp users +daytime 13/tcp +daytime 13/udp +netstat 15/tcp +qotd 17/tcp quote +msp 18/tcp # message send protocol +msp 18/udp # message send protocol +chargen 19/tcp ttytst source +chargen 19/udp ttytst source +ftp-data 20/tcp +ftp 21/tcp +fsp 21/udp fspd +ssh 22/tcp # SSH Remote Login Protocol +ssh 22/udp # SSH Remote Login Protocol +telnet 23/tcp +# 24 - private +smtp 25/tcp mail +# 26 - unassigned +time 37/tcp timserver +time 37/udp timserver +rlp 39/udp resource # resource location +nameserver 42/tcp name # IEN 116 +whois 43/tcp nicname +re-mail-ck 50/tcp # Remote Mail Checking Protocol +re-mail-ck 50/udp # Remote Mail Checking Protocol +domain 53/tcp nameserver # name-domain server +domain 53/udp nameserver +mtp 57/tcp # deprecated +bootps 67/tcp # BOOTP server +bootps 67/udp +bootpc 68/tcp # BOOTP client +bootpc 68/udp +tftp 69/udp +gopher 70/tcp # Internet Gopher +gopher 70/udp +rje 77/tcp netrjs +finger 79/tcp +www 80/tcp http # WorldWideWeb HTTP +www 80/udp # HyperText Transfer Protocol +link 87/tcp ttylink +kerberos 88/tcp kerberos5 krb5 # Kerberos v5 +kerberos 88/udp kerberos5 krb5 # Kerberos v5 +supdup 95/tcp +# 100 - reserved +hostnames 101/tcp hostname # usually from sri-nic +iso-tsap 102/tcp tsap # part of ISODE. +csnet-ns 105/tcp cso-ns # also used by CSO name server +csnet-ns 105/udp cso-ns +# unfortunately the poppassd (Eudora) uses a port which has already +# been assigned to a different service. We list the poppassd as an +# alias here. This should work for programs asking for this service. +# (due to a bug in inetd the 3com-tsmux line is disabled) +#3com-tsmux 106/tcp poppassd +#3com-tsmux 106/udp poppassd +rtelnet 107/tcp # Remote Telnet +rtelnet 107/udp +pop-2 109/tcp postoffice # POP version 2 +pop-2 109/udp +pop-3 110/tcp # POP version 3 +pop-3 110/udp +sunrpc 111/tcp portmapper # RPC 4.0 portmapper TCP +sunrpc 111/udp portmapper # RPC 4.0 portmapper UDP +auth 113/tcp authentication tap ident +sftp 115/tcp +uucp-path 117/tcp +nntp 119/tcp readnews untp # USENET News Transfer Protocol +ntp 123/tcp +ntp 123/udp # Network Time Protocol +netbios-ns 137/tcp # NETBIOS Name Service +netbios-ns 137/udp +netbios-dgm 138/tcp # NETBIOS Datagram Service +netbios-dgm 138/udp +netbios-ssn 139/tcp # NETBIOS session service +netbios-ssn 139/udp +imap2 143/tcp # Interim Mail Access Proto v2 +imap2 143/udp +snmp 161/udp # Simple Net Mgmt Proto +snmp-trap 162/udp snmptrap # Traps for SNMP +cmip-man 163/tcp # ISO mgmt over IP (CMOT) +cmip-man 163/udp +cmip-agent 164/tcp +cmip-agent 164/udp +xdmcp 177/tcp # X Display Mgr. Control Proto +xdmcp 177/udp +nextstep 178/tcp NeXTStep NextStep # NeXTStep window +nextstep 178/udp NeXTStep NextStep # server +bgp 179/tcp # Border Gateway Proto. +bgp 179/udp +prospero 191/tcp # Cliff Neuman's Prospero +prospero 191/udp +irc 194/tcp # Internet Relay Chat +irc 194/udp +smux 199/tcp # SNMP Unix Multiplexer +smux 199/udp +at-rtmp 201/tcp # AppleTalk routing +at-rtmp 201/udp +at-nbp 202/tcp # AppleTalk name binding +at-nbp 202/udp +at-echo 204/tcp # AppleTalk echo +at-echo 204/udp +at-zis 206/tcp # AppleTalk zone information +at-zis 206/udp +qmtp 209/tcp # The Quick Mail Transfer Protocol +qmtp 209/udp # The Quick Mail Transfer Protocol +z3950 210/tcp wais # NISO Z39.50 database +z3950 210/udp wais +ipx 213/tcp # IPX +ipx 213/udp +imap3 220/tcp # Interactive Mail Access +imap3 220/udp # Protocol v3 +ulistserv 372/tcp # UNIX Listserv +ulistserv 372/udp +https 443/tcp # MCom +https 443/udp # MCom +snpp 444/tcp # Simple Network Paging Protocol +snpp 444/udp # Simple Network Paging Protocol +saft 487/tcp # Simple Asynchronous File Transfer +saft 487/udp # Simple Asynchronous File Transfer +npmp-local 610/tcp dqs313_qmaster # npmp-local / DQS +npmp-local 610/udp dqs313_qmaster # npmp-local / DQS +npmp-gui 611/tcp dqs313_execd # npmp-gui / DQS +npmp-gui 611/udp dqs313_execd # npmp-gui / DQS +hmmp-ind 612/tcp dqs313_intercell# HMMP Indication / DQS +hmmp-ind 612/udp dqs313_intercell# HMMP Indication / DQS +# +# UNIX specific services +# +exec 512/tcp +biff 512/udp comsat +login 513/tcp +who 513/udp whod +shell 514/tcp cmd # no passwords used +syslog 514/udp +printer 515/tcp spooler # line printer spooler +talk 517/udp +ntalk 518/udp +route 520/udp router routed # RIP +timed 525/udp timeserver +tempo 526/tcp newdate +courier 530/tcp rpc +conference 531/tcp chat +netnews 532/tcp readnews +netwall 533/udp # -for emergency broadcasts +uucp 540/tcp uucpd # uucp daemon +afpovertcp 548/tcp # AFP over TCP +afpovertcp 548/udp # AFP over TCP +remotefs 556/tcp rfs_server rfs # Brunhoff remote filesystem +klogin 543/tcp # Kerberized `rlogin' (v5) +kshell 544/tcp krcmd # Kerberized `rsh' (v5) +kerberos-adm 749/tcp # Kerberos `kadmin' (v5) +# +webster 765/tcp # Network dictionary +webster 765/udp +# +# From ``Assigned Numbers'': +# +#> The Registered Ports are not controlled by the IANA and on most systems +#> can be used by ordinary user processes or programs executed by ordinary +#> users. +# +#> Ports are used in the TCP [45,106] to name the ends of logical +#> connections which carry long term conversations. For the purpose of +#> providing services to unknown callers, a service contact port is +#> defined. This list specifies the port used by the server process as its +#> contact port. While the IANA can not control uses of these ports it +#> does register or list uses of these ports as a convienence to the +#> community. +# +nfsdstatus 1110/tcp +nfsd-keepalive 1110/udp + +ingreslock 1524/tcp +ingreslock 1524/udp +prospero-np 1525/tcp # Prospero non-privileged +prospero-np 1525/udp +datametrics 1645/tcp old-radius # datametrics / old radius entry +datametrics 1645/udp old-radius # datametrics / old radius entry +sa-msg-port 1646/tcp old-radacct # sa-msg-port / old radacct entry +sa-msg-port 1646/udp old-radacct # sa-msg-port / old radacct entry +radius 1812/tcp # Radius +radius 1812/udp # Radius +radacct 1813/tcp # Radius Accounting +radacct 1813/udp # Radius Accounting +nfsd 2049/tcp nfs +nfsd 2049/udp nfs +cvspserver 2401/tcp # CVS client/server operations +cvspserver 2401/udp # CVS client/server operations +mysql 3306/tcp # MySQL +mysql 3306/udp # MySQL +rfe 5002/tcp # Radio Free Ethernet +rfe 5002/udp # Actually uses UDP only +cfengine 5308/tcp # CFengine +cfengine 5308/udp # CFengine +bbs 7000/tcp # BBS service +# +# +# Kerberos (Project Athena/MIT) services +# Note that these are for Kerberos v4, and are unofficial. Sites running +# v4 should uncomment these and comment out the v5 entries above. +# +kerberos4 750/udp kerberos-iv kdc # Kerberos (server) udp +kerberos4 750/tcp kerberos-iv kdc # Kerberos (server) tcp +kerberos_master 751/udp # Kerberos authentication +kerberos_master 751/tcp # Kerberos authentication +passwd_server 752/udp # Kerberos passwd server +krb_prop 754/tcp # Kerberos slave propagation +krbupdate 760/tcp kreg # Kerberos registration +kpasswd 761/tcp kpwd # Kerberos "passwd" +kpop 1109/tcp # Pop with Kerberos +knetd 2053/tcp # Kerberos de-multiplexor +zephyr-srv 2102/udp # Zephyr server +zephyr-clt 2103/udp # Zephyr serv-hm connection +zephyr-hm 2104/udp # Zephyr hostmanager +eklogin 2105/tcp # Kerberos encrypted rlogin +# +# Unofficial but necessary (for NetBSD) services +# +supfilesrv 871/tcp # SUP server +supfiledbg 1127/tcp # SUP debugging +# +# Datagram Delivery Protocol services +# +rtmp 1/ddp # Routing Table Maintenance Protocol +nbp 2/ddp # Name Binding Protocol +echo 4/ddp # AppleTalk Echo Protocol +zip 6/ddp # Zone Information Protocol +# +# Services added for the Debian GNU/Linux distribution +poppassd 106/tcp # Eudora +poppassd 106/udp # Eudora +mailq 174/tcp # Mailer transport queue for Zmailer +mailq 174/tcp # Mailer transport queue for Zmailer +omirr 808/tcp omirrd # online mirror +omirr 808/udp omirrd # online mirror +rmtcfg 1236/tcp # Gracilis Packeten remote config server +xtel 1313/tcp # french minitel +coda_opcons 1355/udp # Coda opcons (Coda fs) +coda_venus 1363/udp # Coda venus (Coda fs) +coda_auth 1357/udp # Coda auth (Coda fs) +coda_udpsrv 1359/udp # Coda udpsrv (Coda fs) +coda_filesrv 1361/udp # Coda filesrv (Coda fs) +codacon 1423/tcp venus.cmu # Coda Console (Coda fs) +coda_aux1 1431/tcp # coda auxiliary service (Coda fs) +coda_aux1 1431/udp # coda auxiliary service (Coda fs) +coda_aux2 1433/tcp # coda auxiliary service (Coda fs) +coda_aux2 1433/udp # coda auxiliary service (Coda fs) +coda_aux3 1435/tcp # coda auxiliary service (Coda fs) +coda_aux3 1435/udp # coda auxiliary service (Coda fs) +cfinger 2003/tcp # GNU Finger +afbackup 2988/tcp # Afbackup system +afbackup 2988/udp # Afbackup system +icp 3130/tcp # Internet Cache Protocol (Squid) +icp 3130/udp # Internet Cache Protocol (Squid) +postgres 5432/tcp # POSTGRES +postgres 5432/udp # POSTGRES +fax 4557/tcp # FAX transmission service (old) +hylafax 4559/tcp # HylaFAX client-server protocol (new) +noclog 5354/tcp # noclogd with TCP (nocol) +noclog 5354/udp # noclogd with UDP (nocol) +hostmon 5355/tcp # hostmon uses TCP (nocol) +hostmon 5355/udp # hostmon uses TCP (nocol) +ircd 6667/tcp # Internet Relay Chat +ircd 6667/udp # Internet Relay Chat +webcache 8080/tcp # WWW caching service +webcache 8080/udp # WWW caching service +tproxy 8081/tcp # Transparent Proxy +tproxy 8081/udp # Transparent Proxy +mandelspawn 9359/udp mandelbrot # network mandelbrot +amanda 10080/udp # amanda backup services +amandaidx 10082/tcp # amanda backup services +amidxtape 10083/tcp # amanda backup services +isdnlog 20011/tcp # isdn logging system +isdnlog 20011/udp # isdn logging system +vboxd 20012/tcp # voice box system +vboxd 20012/udp # voice box system +binkp 24554/tcp # Binkley +binkp 24554/udp # Binkley +asp 27374/tcp # Address Search Protocol +asp 27374/udp # Address Search Protocol +tfido 60177/tcp # Ifmail +tfido 60177/udp # Ifmail +fido 60179/tcp # Ifmail +fido 60179/udp # Ifmail + +# Local services + diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/shadow b/target/device/KwikByte/kb9202/target_skeleton/etc/shadow new file mode 100755 index 000000000..4941a1ac5 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/shadow @@ -0,0 +1,12 @@ +root::10933:0:99999:7::: +bin:*:10933:0:99999:7::: +daemon:*:10933:0:99999:7::: +adm:*:10933:0:99999:7::: +lp:*:10933:0:99999:7::: +sync:*:10933:0:99999:7::: +shutdown:*:10933:0:99999:7::: +halt:*:10933:0:99999:7::: +uucp:*:10933:0:99999:7::: +operator:*:10933:0:99999:7::: +nobody:*:10933:0:99999:7::: +default::10933:0:99999:7::: diff --git a/target/device/KwikByte/kb9202/target_skeleton/etc/vsftpd.conf b/target/device/KwikByte/kb9202/target_skeleton/etc/vsftpd.conf new file mode 100644 index 000000000..cddde6191 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/etc/vsftpd.conf @@ -0,0 +1,32 @@ +# Standalone mode +listen=YES +max_clients=200 +max_per_ip=4 +# Access rights +anonymous_enable=YES +local_enable=NO +write_enable=NO +anon_upload_enable=NO +anon_mkdir_write_enable=NO +anon_other_write_enable=NO +# Security +anon_world_readable_only=YES +connect_from_port_20=YES +hide_ids=YES +pasv_min_port=50000 +pasv_max_port=60000 +# Features +xferlog_enable=YES +ls_recurse_enable=NO +ascii_download_enable=NO +async_abor_enable=YES +# Performance +one_process_model=YES +idle_session_timeout=120 +data_connection_timeout=300 +accept_timeout=60 +connect_timeout=60 +anon_max_rate=500000 + +ftpd_banner=Welcome to KwikByte KB9202B FTP Server + diff --git a/target/device/KwikByte/kb9202/target_skeleton/root/.ash_history b/target/device/KwikByte/kb9202/target_skeleton/root/.ash_history new file mode 100644 index 000000000..fd94a105e --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/root/.ash_history @@ -0,0 +1,15 @@ +ls +ls +cd +mount /dev/mmcblk0p1 /mnt/mmc +insmod /mnt/mmc/modules/2.6.24/kernel/drivers/usb/gadget/g_zero.ko +umount /mnt/mmc +mount /dev/mmcblk0p1 /mnt/mmc +insmod /mnt/mmc/g_zero.ko +insmod /mnt/mmc/g_zero.ko +cd /var/log/ +ls +cd +cd /proc +lsmod +ls diff --git a/target/device/KwikByte/kb9202/target_skeleton/sbin/automount.script b/target/device/KwikByte/kb9202/target_skeleton/sbin/automount.script new file mode 100755 index 000000000..facce6073 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/sbin/automount.script @@ -0,0 +1,21 @@ +#! /bin/sh + +if [ x$ACTION = "x" ] ; then + echo "$0: should be called by mdev" + exit -1 +fi + +if [ $ACTION = "remove" ] ; then + umount -f /dev/$MDEV + rmdir /disk/$MDEV + exit 0 +fi + +if [ $ACTION = "add" ] ; then + mkdir -p /disk/$MDEV + mount -o sync /dev/$MDEV /disk/$MDEV + exit 0 +fi + +echo "$0: $ACTION=ACTION not recognized" > /dev/console +env > /dev/console diff --git a/target/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script b/target/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script new file mode 100755 index 000000000..98ebc159f --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/usr/share/udhcpc/default.script @@ -0,0 +1,40 @@ +#!/bin/sh + +# udhcpc script edited by Tim Riker + +[ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1 + +RESOLV_CONF="/etc/resolv.conf" +[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast" +[ -n "$subnet" ] && NETMASK="netmask $subnet" + +case "$1" in + deconfig) + /sbin/ifconfig $interface 0.0.0.0 + ;; + + renew|bound) + /sbin/ifconfig $interface $ip $BROADCAST $NETMASK + + if [ -n "$router" ] ; then + echo "deleting routers" + while route del default gw 0.0.0.0 dev $interface ; do + : + done + + metric=0 + for i in $router ; do + route add default gw $i dev $interface metric $((metric++)) + done + fi + + echo -n > $RESOLV_CONF + [ -n "$domain" ] && echo search $domain >> $RESOLV_CONF + for i in $dns ; do + echo adding dns $i + echo nameserver $i >> $RESOLV_CONF + done + ;; +esac + +exit 0 diff --git a/target/device/KwikByte/kb9202/target_skeleton/var/adm b/target/device/KwikByte/kb9202/target_skeleton/var/adm new file mode 120000 index 000000000..fbf828d63 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/var/adm @@ -0,0 +1 @@ +log \ No newline at end of file diff --git a/target/device/KwikByte/kb9202/target_skeleton/var/tmp b/target/device/KwikByte/kb9202/target_skeleton/var/tmp new file mode 120000 index 000000000..1431b0e43 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/var/tmp @@ -0,0 +1 @@ +../tmp \ No newline at end of file -- cgit v1.2.3