From ceaf9e8217f29f6c499d03c62612b2eb50e8ed09 Mon Sep 17 00:00:00 2001 From: John Voltz Date: Thu, 6 Mar 2008 18:59:14 +0000 Subject: updates and additions for avr32 arch --- .../target_skeleton/etc/init.d/S08syslog | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 target/device/Atmel/atngw100-base/target_skeleton/etc/init.d/S08syslog (limited to 'target/device/Atmel/atngw100-base/target_skeleton/etc/init.d/S08syslog') diff --git a/target/device/Atmel/atngw100-base/target_skeleton/etc/init.d/S08syslog b/target/device/Atmel/atngw100-base/target_skeleton/etc/init.d/S08syslog new file mode 100755 index 000000000..58b05925d --- /dev/null +++ b/target/device/Atmel/atngw100-base/target_skeleton/etc/init.d/S08syslog @@ -0,0 +1,24 @@ +#!/bin/sh + +SYSLOGD=/sbin/syslogd + +echo -n "Starting syslogd: " +if [ ! -x "${SYSLOGD}" ]; then + echo "missing" + exit 1 +fi + +if ${SYSLOGD}; then + echo "done" +else + echo "failed" + exit 1 +fi + +echo -n "Log messages to syslog: " +if echo 4 4 1 7 > /proc/sys/kernel/printk; then + echo "done" +else + echo "failed" + exit 1 +fi -- cgit v1.2.3