From 8fdcf93149e5a3f262209cef4fc1d2b9fe287a51 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 18 Feb 2009 14:53:58 +0000 Subject: initram: allow user o specify filesystem in alpine_dev boot param --- initramfs-init | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'initramfs-init') diff --git a/initramfs-init b/initramfs-init index b2375fe..79016ee 100755 --- a/initramfs-init +++ b/initramfs-init @@ -74,6 +74,10 @@ for i in `cat /proc/cmdline` ; do done ALPINE_DEV=${KOPT_alpine_dev%%:*} +ALPINE_DEV_FS=${KOPT_alpine_dev##*:} +if [ "$ALPINE_DEV_FS" = "$ALPINE_DEV" ]; then + unset ALPINE_DEV_FS +fi ALPINE_MNT=/media/$ALPINE_DEV # hide kernel messages @@ -109,7 +113,11 @@ eend 0 # locate boot media and mount it ebegin "Mounting boot media" -mount $ALPINE_MNT >/dev/null 2>&1 +mkdir -p $ALPINE_MNT +if [ -n "$ALPINE_DEV_FS" ]; then + mount_opts="-t $ALPINE_DEV_FS" +fi +mount $mount_opts /dev/$ALPINE_DEV $ALPINE_MNT >/dev/null 2>&1 eend $? ebegin "Mounting loopback device for kernel modules" modprobe loop -- cgit v1.2.3-70-g09d2