initramfs-module-squashfs: add
authorOtavio Salvador <otavio@ossystems.com.br>
Tue, 13 Jan 2009 18:03:30 +0000 (16:03 -0200)
committerOtavio Salvador <otavio@ossystems.com.br>
Tue, 13 Jan 2009 18:04:47 +0000 (16:04 -0200)
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 [new file with mode: 0644]
packages/initrdscripts/initramfs-module-squashfs_1.0.bb [new file with mode: 0644]

diff --git a/packages/initrdscripts/files/80-squashfs.sh b/packages/initrdscripts/files/80-squashfs.sh
new file mode 100644 (file)
index 0000000..22c0954
--- /dev/null
@@ -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 (file)
index 0000000..f3d50ff
--- /dev/null
@@ -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/* "