diff options
Diffstat (limited to 'packages/initrdscripts/files')
-rw-r--r-- | packages/initrdscripts/files/00-psplash.sh | 4 | ||||
-rw-r--r-- | packages/initrdscripts/files/80-ext3.sh | 17 | ||||
-rw-r--r-- | packages/initrdscripts/files/80-squashfs.sh | 17 | ||||
-rw-r--r-- | packages/initrdscripts/files/98-aufs.sh | 17 | ||||
-rw-r--r-- | packages/initrdscripts/files/99-psplash.sh | 2 |
5 files changed, 57 insertions, 0 deletions
diff --git a/packages/initrdscripts/files/00-psplash.sh b/packages/initrdscripts/files/00-psplash.sh new file mode 100644 index 0000000000..491fe13fc3 --- /dev/null +++ b/packages/initrdscripts/files/00-psplash.sh @@ -0,0 +1,4 @@ +mkdir -p /mnt/.psplash +mount tmpfs -t tmpfs /mnt/.psplash -o,size=40k + +psplash & diff --git a/packages/initrdscripts/files/80-ext3.sh b/packages/initrdscripts/files/80-ext3.sh new file mode 100644 index 0000000000..ed1909947b --- /dev/null +++ b/packages/initrdscripts/files/80-ext3.sh @@ -0,0 +1,17 @@ +ext3_mount () { + modprobe -q ext3 + + mkdir $2 + mount -t ext3 -onoatime,data=journal,errors=continue $1 $2 +} + +for arg in $CMDLINE; do + optarg=`expr "x$arg" : 'x[^=]*=\(.*\)'` + echo $arg xxx $optarg + case $arg in + ext3=*) + dev=`expr "$optarg" : '\([^:]*\).*'` + path=`expr "$optarg" : '[^:]*:\([^:]*\).*'` + ext3_mount $dev $path ;; + esac +done 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/files/98-aufs.sh b/packages/initrdscripts/files/98-aufs.sh new file mode 100644 index 0000000000..df05418c57 --- /dev/null +++ b/packages/initrdscripts/files/98-aufs.sh @@ -0,0 +1,17 @@ +aufs_mount () { + modprobe -q aufs + + mkdir $2 /mnt + mount -t aufs -o br:$1:$2 none /mnt +} + +for arg in $CMDLINE; do + optarg=`expr "x$arg" : 'x[^=]*=\(.*\)'` + case $arg in + aufs=*) + rw=`expr "$optarg" : '\([^:]*\).*'` + ro=`expr "$optarg" : '[^:]*:\([^:]*\).*'` + aufs_mount $rw $ro + BOOT_ROOT=/mnt ;; + esac +done diff --git a/packages/initrdscripts/files/99-psplash.sh b/packages/initrdscripts/files/99-psplash.sh new file mode 100644 index 0000000000..fa488cff8b --- /dev/null +++ b/packages/initrdscripts/files/99-psplash.sh @@ -0,0 +1,2 @@ +mkdir -p /mnt/mnt/.psplash +mount -n -o move /mnt/.psplash /mnt/mnt/.psplash |