blob: 458711f3be430be07cf4c1f599eca49f6939035b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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/
}
|