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 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 packages/initrdscripts/files/80-squashfs.sh (limited to 'packages/initrdscripts/files/80-squashfs.sh') 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 -- cgit v1.2.3