Update atstk1002 target skeleton
authorUlf Samuelsson <ulf.samuelsson@atmel.com>
Fri, 17 Aug 2007 13:02:52 +0000 (13:02 -0000)
committerUlf Samuelsson <ulf.samuelsson@atmel.com>
Fri, 17 Aug 2007 13:02:52 +0000 (13:02 -0000)
24 files changed:
target/device/Atmel/atstk1002/target_skeleton/etc/asound.state
target/device/Atmel/atstk1002/target_skeleton/etc/hosts
target/device/Atmel/atstk1002/target_skeleton/etc/inetd.conf
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/K20alsa-utils
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/K70sendsig
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/K80netfs
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/K85network
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/K90localfs
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S01hotplug
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S03bootsplash
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S08syslog
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S09klog
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S10modules-init
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S15localfs
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S20network
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S40telnetd
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S41inetd
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S42httpd
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S43ntp
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S49netfs
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S50alsa-utils
target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S99splash
target/device/Atmel/atstk1002/target_skeleton/etc/passwd

index ba3131f605a22ed878d0fef63fcba440bee67155..55fb3f00ac744d165e480242e5adc06f862b4c2c 100644 (file)
@@ -7,7 +7,7 @@ state.at73c213_0 {
                iface MIXER
                name 'Master Playback Volume'
                value.0 21
-               value.1 20
+               value.1 21
        }
        control.2 {
                comment.access 'read write'
index 1de7bf570b671e7748e81fd7a30cb809e5dcabc2..ef3816702f8a0b34c9b4a36a75b58cc81f1b6369 100644 (file)
@@ -1,11 +1,12 @@
-127.0.0.1      localhost.localdomain localhost
-127.0.1.1      stk1000.example.net stk1000
+127.0.0.1   localhost.localdomain localhost
+127.0.1.1   stk1000.example.net stk1000
 
 # The following lines are desirable for IPv6 capable hosts
-::1 ip6-localhost ip6-loopback
+::1     localhost
+::1     ip6-localhost ip6-loopback
+::1     stk1000.example.net stk1000
 fe00::0 ip6-localnet
 ff00::0 ip6-mcastprefix
 ff02::1 ip6-allnodes
 ff02::2 ip6-allrouters
 ff02::3 ip6-allhosts
-
index 6d7f6533a2e97cd7ba601609b5a37d19c7231616..23eba798825a18c8b9558ce6f7ee27e8a999970d 100644 (file)
@@ -1,4 +1,3 @@
-ftp            stream  tcp nowait      root.root /usr/sbin/ftpd ftpd -a
 #netbios-ssn   stream  tcp nowait      root.root /usr/sbin/smbd smbd
 #netbios-ns    dgram   udp wait        root.root /usr/sbin/nmbd nmbd
-swat           stream  tcp nowait.400  root.root /usr/sbin/swat swat
+#swat          stream  tcp nowait.400  root.root /usr/sbin/swat swat
index 604ca5b4c6d315a8f3e2f0978526b3102faa7204..68f7462342eac1e6966d066c3a2d3794af710d78 100755 (executable)
@@ -5,10 +5,10 @@ PROGRAM=/usr/sbin/alsactl
 # Exit silently if alsa-utils isn't installed
 [ -x ${PROGRAM} ] || exit 0
 
-echo -n "Saving mixer state:"
-if ${PROGRAM} store > /dev/null 2> /dev/null; then
-       echo " done"
+echo -n "Saving mixer state: "
+if ${PROGRAM} store; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index 5b6d3cdc7f24eb454a3a8c89e9eee0caf10e2ecd..d4e8e6139a53efd8172483e04e40b69d7ae51da4 100755 (executable)
@@ -2,10 +2,10 @@
 
 IFDOWN=/sbin/ifdown
 
-echo -n "Stopping networking:"
+echo -n "Stopping networking: "
 if ${IFDOWN} -a; then
-       echo " done"
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index 89c49e11778ca2304f4a8c10ee5ca7c02ddadbff..15e075b887380e2b1e205cf8a101551e5df7ec8c 100755 (executable)
@@ -1,8 +1,8 @@
-#! /bin/sh
+#!/bin/sh
 
-echo -n "Setting up mdev:"
+echo -n "Setting up mdev: "
 set -e
-trap 'echo " failed"' EXIT
+trap 'echo "failed"' EXIT
 /bin/ln -s /proc/self/fd /dev/fd
 /bin/ln -s /proc/self/fd/0 /dev/stdin
 /bin/ln -s /proc/self/fd/1 /dev/stdout
@@ -11,4 +11,4 @@ trap 'echo " failed"' EXIT
 /bin/echo /sbin/mdev > /proc/sys/kernel/hotplug
 /sbin/mdev -s
 trap - EXIT
-echo " done"
+echo "done"
index fcad428afa62a67dc058fa8e903c309bbaf61012..cf858ed6291bc75b44231837e05504492ff0d837 100755 (executable)
@@ -2,7 +2,7 @@
 
 PROGRAM=/bin/hostname
 
-echo -n "Setting hostname:"
+echo -n "Setting hostname: "
 [ -x ${PROGRAM} ] || (echo " missing"; exit 0)
 
 if [ -f /etc/hostname ]; then
@@ -12,10 +12,10 @@ else
 fi
 
 start() {
-       if ${PROGRAM} "${HOST}" > /dev/null 2> /dev/null; then
-               echo " '${HOST}'"
+       if ${PROGRAM} "${HOST}"; then
+               echo "'${HOST}'"
        else
-               echo " failed"
+               echo "failed"
                exit 1
        fi
 }
index 260a5913b6fc4a499d2c910d0b016055daae2c1b..21a3a5758bcb0f4dd918272178b204a7e60c14ee 100755 (executable)
@@ -5,22 +5,21 @@ FBSET=/usr/sbin/fbset
 FBMODEFILE="/etc/fb.modes"
 SPLASHFILE="/etc/stk1000bootsplash.jpg"
 
-echo -n "Bootsplash image:"
+echo -n "Bootsplash image: "
 if [ ! -x "${FBV}" -o ! -x "${FBSET}" -o \
                ! -f "${SPLASHFILE}" -o ! -f "${FBMODEFILE}" ]; then
-       echo " missing"
+       echo "missing"
        exit 1
 fi
 
-if ! ${FBSET} 320x240-68 > /dev/null 2> /dev/null; then
-       echo " failed"
+if ! ${FBSET} 320x240-68; then
+       echo "failed"
        exit 1
 fi
 
-${FBV} ${SPLASHFILE} < /dev/null > /dev/null 2> /dev/null &
+${FBV} ${SPLASHFILE} > /dev/null &
 if [ $? -eq 0 ]; then
-       echo " loaded"
-       kill `pidof ${FBV}` > /dev/null 2> /dev/null
+       echo "loaded"
 else
-       echo " failed"
+       echo "failed"
 fi
index 63951e02346530d0e25441602bf58486d3b21631..58b05925db6bab74ac5880d6c4bb7b5322ae0f70 100755 (executable)
@@ -2,23 +2,23 @@
 
 SYSLOGD=/sbin/syslogd
 
-echo -n "Starting syslogd:"
+echo -n "Starting syslogd: "
 if [ ! -x "${SYSLOGD}" ]; then
-       echo " missing"
+       echo "missing"
        exit 1
 fi
 
-if ${SYSLOGD} > /dev/null 2> /dev/null; then
-       echo " done"
+if ${SYSLOGD}; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
 
-echo -n "Log messages to syslog:"
-if echo 4 4 1 7 > /proc/sys/kernel/printk 2> /dev/null; then
-       echo " done"
+echo -n "Log messages to syslog: "
+if echo 4 4 1 7 > /proc/sys/kernel/printk; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index 4c6763bbd057d635cb260641d60d4ecd53e43fcc..1b0028a084b91cd8df0f23d5823caaa43e5427b3 100755 (executable)
@@ -2,15 +2,15 @@
 
 KLOGD=/sbin/klogd
 
-echo -n "Starting klogd:"
+echo -n "Starting klogd: "
 if [ ! -x "${KLOGD}" ]; then
-       echo " missing"
+       echo "missing"
        exit 1
 fi
 
-if ${KLOGD} > /dev/null 2> /dev/null; then
-       echo " done"
+if ${KLOGD}; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index d1fcc26e39c8251c414b954656a10a58216c3ca2..e2cf4e3036f67c4f99b45ad79707e0a4e437b5e2 100755 (executable)
@@ -2,9 +2,9 @@
 
 MODPROBE=/sbin/modprobe
 
-echo -n "Probing modules:"
+echo -n "Probing modules: "
 if [ ! -x "${MODPROBE}" -o ! -f "/etc/modules" ]; then
-       echo " missing"
+       echo "missing"
        exit 1
 else
        echo
@@ -13,7 +13,7 @@ fi
 grep '^[^#]' "/etc/modules" | \
 while read module args; do
        [ "$module" ] || continue
-       if ${MODPROBE} $module $args > /dev/null 2> /dev/null; then
+       if ${MODPROBE} $module $args; then
                echo "  $module loaded"
        else
                echo "  $module failed"
index 9672752a00810db1f69525f5296745308a9cd5bd..a0b5a8982440218c9c8e5720404d93af190ac5c0 100755 (executable)
@@ -2,10 +2,10 @@
 
 MOUNT=/bin/mount
 
-echo -n "Mounting local filesystems:"
-if ${MOUNT} -a > /dev/null 2> /dev/null; then
-       echo " done"
+echo -n "Mounting local filesystems: "
+if ${MOUNT} -a; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index a9787cdfde1d406adec9aeb158095815c39d5460..06cf8cb0002e8c9f9beec3bcefdaab3eb70554db 100755 (executable)
@@ -2,10 +2,10 @@
 
 IFUP=/sbin/ifup
 
-echo -n "Network interfaces:"
-if ${IFUP} -a > /dev/null 2> /dev/null; then
-       echo " done"
+echo -n "Network interfaces: "
+if ${IFUP} -a; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index c44bbb5ae0b1ad0ba319da06fa17106725bf9ae9..b253c10364401a627f4d57cb80d99aec0bf17990 100755 (executable)
@@ -2,15 +2,15 @@
 
 TELNETD=/usr/sbin/telnetd
 
-echo -n "Starting telnetd:"
+echo -n "Starting telnetd: "
 if [ ! -x "${TELNETD}" ]; then
-       echo " missing"
+       echo "missing"
        exit 1
 fi
 
-if ${TELNETD} -l /bin/ash > /dev/null 2> /dev/null; then
-       echo " done"
+if ${TELNETD} -l /bin/ash; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index cf85c13f11bfcedf4643e445ad7b46790a095ced..2d24974a5cd96bc7c8341e9752882be4a7056757 100755 (executable)
@@ -2,15 +2,15 @@
 
 INETD=/usr/sbin/inetd
 
-echo -n "Starting inted:"
+echo -n "Starting inted: "
 if [ ! -x "${INETD}" ]; then
-       echo " missing"
+       echo "missing"
        exit 1
 fi
 
-if ${INETD} > /dev/null 2> /dev/null; then
-       echo " done"
+if ${INETD}; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index 202e9d2eb3741dc1bb8688b0843b74b1d8266c2e..f8e7813e65e3894e107123ef031b73df2d5b7945 100755 (executable)
@@ -2,15 +2,15 @@
 
 HTTPD=/usr/sbin/httpd
 
-echo -n "Starting httpd:"
+echo -n "Starting httpd: "
 if [ ! -x "${HTTPD}" ]; then
-       echo " missing"
+       echo "missing"
        exit 1
 fi
 
-if ${HTTPD} -h /www > /dev/null 2> /dev/null; then
-       echo " done"
+if ${HTTPD} -h /www; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index f996ab09ff39c0f609abcc5a7d50468a256676f8..69fa4c8940f2ec5a489e23d80e081b7517b37ca1 100755 (executable)
@@ -5,22 +5,22 @@ NTPDATE=/usr/bin/ntpdate
 if [ -f /etc/default/ntpdate ]; then
     . /etc/default/ntpdate
 else
-       echo " missing /etc/default/ntpdate"
+       echo "WARNING: missing /etc/default/ntpdate"
        exit 1
 fi
 
-echo -n "Starting ntpdate:"
+echo -n "Starting ntpdate: "
 if [ ! -x ${NTPDATE} ]; then
-       echo " missing"
+       echo "missing"
        echo -n "  WARNING: could not syncronize clock, "
        echo "edit NTPSERVERS in /etc/default/ntpdate."
        exit 1
 fi
 
-if ${NTPDATE} $NTPOPTIONS $NTPSERVERS > /dev/null 2> /dev/null; then
-       echo " done"
+if ${NTPDATE} $NTPOPTIONS $NTPSERVERS; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        echo -n "  WARNING: could not syncronize clock, "
        echo "edit NTPSERVERS in /etc/default/ntpdate."
        exit 1
index 99782b481cd8ff52eb523f6713a7d76097ce0e47..e1e0fbf4f183b9d86c78942f974d4b93e7faee81 100755 (executable)
@@ -2,10 +2,10 @@
 
 MOUNT=/bin/mount
 
-echo -n "Mounting remote filesystems:"
-if ${MOUNT} -t nfs -a > /dev/null 2> /dev/null; then
-       echo " done"
+echo -n "Mounting remote filesystems: "
+if ${MOUNT} -t nfs -a; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index 0b01f1a6d5b1ef093cc7a91483cc5492d11e5246..e92e5d8aeb3790fc66f8663e0e4f62270e800fe9 100755 (executable)
@@ -5,15 +5,15 @@ PROGRAM=/usr/sbin/alsactl
 # Exit silently if alsa-utils isn't installed
 [ -x ${PROGRAM} ] || exit 0
 
-echo -n "Restoring mixer state:"
+echo -n "Restoring mixer state: "
 if [ ! -f /etc/asound.state ]; then
-       echo " missing"
+       echo "missing"
        exit 1
 fi
 
-if ${PROGRAM} restore > /dev/null 2> /dev/null; then
-       echo " done"
+if ${PROGRAM} restore; then
+       echo "done"
 else
-       echo " failed"
+       echo "failed"
        exit 1
 fi
index c40790e39b220edbdae5fdeaf5036f03dde8cf86..47001adb21a5d99587ea374c38cae32e02980a05 100755 (executable)
@@ -3,16 +3,15 @@
 PROGRAM=/usr/bin/fbv
 SPLASHFILE="/etc/stk1000splash.jpg"
 
-echo -n "Splash image:"
+echo -n "Splash image: "
 if [ ! -x "${PROGRAM}" -o ! -f "${SPLASHFILE}" ]; then
-       echo " missing"
+       echo "missing"
        exit 1
 fi
 
-${PROGRAM} ${SPLASHFILE} < /dev/null > /dev/null 2>/dev/null &
+${PROGRAM} ${SPLASHFILE} /dev/null &
 if [ $? -eq 0 ]; then
-       echo " loaded"
-       kill `pidof ${PROGRAM}` > /dev/null 2> /dev/null
+       echo "loaded"
 else
-       echo " failed"
+       echo "failed"
 fi
index 831c3043b732af6b21d29f00082c6b2027e74734..705c89eece406217da96cf6eea715b01c0795925 100644 (file)
@@ -1,4 +1,4 @@
-root:$1$rsjkLsTU$zdulfnYQgyKmN3e0Fiw7C1:0:0:root:/:/bin/ash
+root:$1$rsjkLsTU$zdulfnYQgyKmN3e0Fiw7C1:0:0: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