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