blob: 8d61257220845688e32bf9949fc25daaf5f993fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
SRC_URI = "file://00-psplash.sh file://99-psplash.sh"
PR = "r4"
RDEPENDS = "initramfs-uniboot virtual/psplash"
DESCRIPTION = "An initramfs module to enable psplash."
do_install() {
install -d ${D}/initrd.d
install -m 0755 ${WORKDIR}/00-psplash.sh ${D}/initrd.d/
install -m 0755 ${WORKDIR}/99-psplash.sh ${D}/initrd.d/
}
PACKAGE_ARCH = "all"
FILES_${PN} += " /initrd.d/* "
|