summaryrefslogtreecommitdiffstats
path: root/examples/dracut/mgalive-parse.sh
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dracut/mgalive-parse.sh')
-rwxr-xr-xexamples/dracut/mgalive-parse.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/examples/dracut/mgalive-parse.sh b/examples/dracut/mgalive-parse.sh
deleted file mode 100755
index c5225ba..0000000
--- a/examples/dracut/mgalive-parse.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-# live images are specified with
-# root=mgalive:backingdev
-
-[ -z "$root" ] && root=$(getarg root=)
-
-if [ "${root%%:*}" = "mgalive" ] ; then
- liveroot=$root
-fi
-
-[ "${liveroot%%:*}" = "mgalive" ] || return
-
-modprobe -q loop
-
-case "$liveroot" in
- mgalive:LABEL=*|LABEL=*) \
- root="${root#mgalive:}"
- root="$(echo $root | sed 's,/,\\x2f,g')"
- root="mgalive:/dev/disk/by-label/${root#LABEL=}"
- rootok=1 ;;
- mgalive:UUID=*|UUID=*) \
- root="${root#mgalive:}"
- root="mgalive:/dev/disk/by-uuid/${root#UUID=}"
- rootok=1 ;;
-esac
-info "root was $liveroot, is now $root"
-
-# make sure that init doesn't complain
-[ -z "$root" ] && root="mgalive"
-
-wait_for_dev /live/union