blob: 58fa3ed52b4f35019431e269c05a1c4970f2251d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
SRC_URI = "file://zzapsplash-init"
do_install_prepend() {
install -d "${D}${sysconfdir}/init.d/"
install -m 0755 "${WORKDIR}/zzapsplash-init" "${D}${sysconfdir}/init.d/zzapsplash"
}
inherit update-rc.d
INITSCRIPT_NAME = "zzapsplash"
INITSCRIPT_PARAMS = "start 99 5 S ."
|