2010-10-31 02:07:13 +01:00
|
|
|
#!/sbin/runscript
|
|
|
|
# Copyright 1999-2008 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
|
|
|
description="Linkstation/Kurobox/Terastation micro controller daemon"
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
need micro_evtd-boot
|
2010-11-01 06:36:49 +01:00
|
|
|
after *
|
2010-10-31 02:07:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
ebegin "Starting ${description} final tasks"
|
|
|
|
# signalize we're up & running
|
|
|
|
/usr/sbin/microapl -a bz_imhere 120 am4 d4 f4 am4 d4 f4 dm4 dm4 f4 a4 am4 &>/dev/null
|
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
ebegin "Stopping ${description} final tasks"
|
|
|
|
eend $?
|
|
|
|
}
|