blob: fcf3f97a905f3894d2286e6ecc3e498b60352478 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
SRC_URI = "file://80-squashfs.sh"
PR = "r2"
DESCRIPTION = "An initramfs module for mount squashfs."
RDEPENDS_${PN} = "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/* "
|