From 039719a866dd668be1dc24c72711f5b882669c6f Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Tue, 13 Jan 2009 16:03:30 -0200 Subject: initramfs-module-squashfs: add This is used to make the squashfs usage easier for initramfs users. It has been created by O.S. Systems. --- packages/initrdscripts/files/80-squashfs.sh | 17 +++++++++++++++++ packages/initrdscripts/initramfs-module-squashfs_1.0.bb | 12 ++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 packages/initrdscripts/files/80-squashfs.sh create mode 100644 packages/initrdscripts/initramfs-module-squashfs_1.0.bb (limited to 'packages') diff --git a/packages/initrdscripts/files/80-squashfs.sh b/packages/initrdscripts/files/80-squashfs.sh new file mode 100644 index 0000000000..22c09544a0 --- /dev/null +++ b/packages/initrdscripts/files/80-squashfs.sh @@ -0,0 +1,17 @@ +squashfs_mount () { + modprobe -q squashfs + + mkdir $2 + mount -t squashfs $1 $2 +} + +for arg in $CMDLINE; do + optarg=`expr "x$arg" : 'x[^=]*=\(.*\)'` + echo $arg xxx $optarg + case $arg in + squashfs=*) + dev=`expr "$optarg" : '\([^:]*\).*'` + path=`expr "$optarg" : '[^:]*:\([^:]*\).*'` + squashfs_mount $dev $path ;; + esac +done diff --git a/packages/initrdscripts/initramfs-module-squashfs_1.0.bb b/packages/initrdscripts/initramfs-module-squashfs_1.0.bb new file mode 100644 index 0000000000..f3d50ffa49 --- /dev/null +++ b/packages/initrdscripts/initramfs-module-squashfs_1.0.bb @@ -0,0 +1,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/* " -- cgit 1.2.3-korg