12 lines
126 B
Plaintext
12 lines
126 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
START=05
|
||
|
|
||
|
start() {
|
||
|
psplash &
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall psplash
|
||
|
}
|