summaryrefslogtreecommitdiffstats
path: root/meta-agl/recipes-core/psplash/psplash_git.bbappend
blob: c2c58c5623888a16b27169486ac0cd3ad0b32093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"

SRC_URI += "file://psplash-colors.h \
            file://psplash-start.service \
            file://psplash-quit.service \
            "

SPLASH_IMAGES="file://psplash-poky-img.h;outsuffix=default"

inherit systemd

SYSTEMD_PACKAGES = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '${PN}', '', d)}"
SYSTEMD_SERVICE_${PN} = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'psplash-start.service psplash-quit.service', '', d)}"

do_configure_append () {
	cd ${S}
	cp ../psplash-colors.h ./
}

do_install_append () {
    if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
        install -d ${D}${systemd_unitdir}/system
        install -m 644 ${WORKDIR}/*.service ${D}/${systemd_unitdir}/system
    fi
}