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