summaryrefslogtreecommitdiff
path: root/meta-unit-core/recipes-core/plymouth
diff options
context:
space:
mode:
authorunitexe <unitexe70@gmail.com>2026-02-16 22:31:09 -0600
committerunitexe <unitexe70@gmail.com>2026-02-16 23:08:43 -0600
commitf15373f84dd78c128a4379eda6fb241dd8792ffb (patch)
tree5c0addbb3844e564edff14b2387a97efc68c2286 /meta-unit-core/recipes-core/plymouth
parent019a45d52dc06c812c3ba74941ee692df6a72e21 (diff)
Initramfs with plymouth splash for raspberrypi3-64
Diffstat (limited to 'meta-unit-core/recipes-core/plymouth')
-rw-r--r--meta-unit-core/recipes-core/plymouth/plymouth/plymouthd.conf4
-rw-r--r--meta-unit-core/recipes-core/plymouth/plymouth_%.bbappend13
2 files changed, 17 insertions, 0 deletions
diff --git a/meta-unit-core/recipes-core/plymouth/plymouth/plymouthd.conf b/meta-unit-core/recipes-core/plymouth/plymouth/plymouthd.conf
new file mode 100644
index 0000000..eaa41c6
--- /dev/null
+++ b/meta-unit-core/recipes-core/plymouth/plymouth/plymouthd.conf
@@ -0,0 +1,4 @@
+[Daemon]
+Theme=spin
+ShowDelay=0
+DeviceTimeout=8
diff --git a/meta-unit-core/recipes-core/plymouth/plymouth_%.bbappend b/meta-unit-core/recipes-core/plymouth/plymouth_%.bbappend
new file mode 100644
index 0000000..458711f
--- /dev/null
+++ b/meta-unit-core/recipes-core/plymouth/plymouth_%.bbappend
@@ -0,0 +1,13 @@
+# Using yocto's initramfs framework to generate initramfs instead
+RDEPENDS:${PN}-initrd:remove = "dracut"
+
+PACKAGECONFIG:append = " drm"
+
+FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
+
+SRC_URI:append = " file://plymouthd.conf"
+
+do_install:append() {
+ install -d ${D}${sysconfdir}/plymouth
+ install -m 0644 ${UNPACKDIR}/plymouthd.conf ${D}${sysconfdir}/plymouth/
+}