#!/bin/sh
### BEGIN INIT INFO
# Provides:          syslog
# Required-Start:    mountkernfs
# Required-Stop:     
# Default-Start:     S
# Default-Stop:
# Short-Description: Start circular syslogger
# Description:       Enable circular busybox syslogger
### END INIT INFO

# ugly hacks follow

tablet_setup()
{
	/bin/busybox syslogd -L -R 192.168.2.1 -C16	
	/bin/busybox klogd
}

case "$1" in
        start|restart|force-reload)
        tablet_setup
        ;;
        stop)
        ;;
        *)
        echo "Usage: /etc/init.d/boot-basics {start|stop|restart|force-reload}" >&2
        exit 3
        ;;
esac
