blob: 343f9d1e0a10131be060ac9794701898dd0c9ae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
SRC_URI = "file://90-check-modules.sh"
PR = "r1"
DESCRIPTION = "An initramfs module for checking that kernel modules exist in rootfs"
RDEPENDS_${PN} = "initramfs-uniboot"
do_install() {
install -d ${D}/initrd.d
install -m 0755 ${WORKDIR}/90-check-modules.sh ${D}/initrd.d/
}
PACKAGE_ARCH = "all"
FILES_${PN} += " /initrd.d/* "
|