blob: f3d50ffa492198a08ad2bb6d34cbf1347583aea1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
SRC_URI = "file://80-squashfs.sh"
PR = "r1"
DESCRIPTION = "An initramfs module for mount squashfs."
RDEPENDS = "initramfs-uniboot"
do_install() {
install -d ${D}/initrd.d
install -m 0755 ${WORKDIR}/80-squashfs.sh ${D}/initrd.d/
}
PACKAGE_ARCH = "all"
FILES_${PN} += " /initrd.d/* "
|