blob: 989dc868b9b2f0705ba3f9317907871bf0076867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SUMMARY = "Initramfs module for settle after showing plymouth boot splash"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${UNIT_CORE_LAYERDIR}/LICENSE;md5=38bf13be5d6979b28bd8adddb2f2f9b3"
RDEPENDS:${PN} = "\
initramfs-framework-base \
initramfs-module-plymouth \
"
SRC_URI = "file://plymouthsettle"
S = "${UNPACKDIR}"
do_install() {
install -d ${D}/init.d
install -m 0755 ${UNPACKDIR}/plymouthsettle ${D}/init.d/04-plymouthsettle
}
FILES:${PN} = "/init.d/04-plymouthsettle"
|