blob: b4b2d4315068baa87f466de4b13ce851e7be7ddd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
SRC_URI = "file://85-blockboot.sh"
PR = "r3"
RDEPENDS = "initramfs-uniboot"
DESCRIPTION = "An initramfs module for booting off normal block devices."
do_install() {
install -d ${D}/initrd.d
install -m 0755 ${WORKDIR}/85-blockboot.sh ${D}/initrd.d/
}
PACKAGE_ARCH = "all"
FILES_${PN} += " /initrd.d/* "
|