blob: 5d4c8468fc5f24882466b6ffbe550c8f157e52d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
SRC_URI = "file://85-blockboot.sh"
PR = "r4"
RDEPENDS_${PN} = "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/* "
|