grml2ram: switch default mount point from /lib/live/mount/medium to /run/live/medium
[grml-scripts.git] / usr_sbin / grml2ram
index 37c36a3..3482bdb 100755 (executable)
@@ -19,12 +19,10 @@ if ! isgrmlcd ; then
    exit 1
 fi
 
    exit 1
 fi
 
-# old linuxrc version:
-[ -d /cdrom ]      && export LIVECD_PATH=/cdrom
-# initramfs layout until around December 2012:
-[ -d /live/image ] && export LIVECD_PATH=/live/image
-# initramfs layout since around December 2012:
-[ -d /lib/live/mount/medium ] && export LIVECD_PATH=/lib/live/mount/medium
+# initramfs layout since December 2012, backwards compatibility:
+[ -d /lib/live/mount/medium ] && export LIVECD_PATH='/lib/live/mount/medium'
+# initramfs layout since December 2018:
+[ -d /run/live/medium ] && export LIVECD_PATH='/run/live/medium'
 
 if [ -z "$CMDLINE" ]; then
   # if CMDLINE was set from the outside, we're debugging.
 
 if [ -z "$CMDLINE" ]; then
   # if CMDLINE was set from the outside, we're debugging.