summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2012-06-05 15:18:31 +0200
committerDaniel Baumann <daniel@debian.org>2012-06-05 16:11:16 +0200
commit6d3f4fd5557f5efc83c42374417f4a05e99d3744 (patch)
treed5c7e701bce145e1be5aaa4ef410589905e40d5e /bin
parentc48696a0ebe9ffc938b84b921db90ac620339a52 (diff)
downloadlive-boot-6d3f4fd5557f5efc83c42374417f4a05e99d3744.tar.gz
live-boot-6d3f4fd5557f5efc83c42374417f4a05e99d3744.zip
Moving out live-helpers from initramfs-tools specifics.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/live-snapshot34
1 files changed, 33 insertions, 1 deletions
diff --git a/bin/live-snapshot b/bin/live-snapshot
index 6ba45f2..e684824 100755
--- a/bin/live-snapshot
+++ b/bin/live-snapshot
@@ -37,7 +37,39 @@ else
set -e
fi
-. /usr/share/initramfs-tools/scripts/live-helpers
+## Begin FIXME: this is an embedded copy of the old 'live-helpers' initramfs script
+if [ ! -x "/bin/fstype" ]
+then
+ # klibc not in path -> not in initramfs
+ export PATH="${PATH}:/usr/lib/klibc/bin"
+fi
+
+# handle upgrade path from old udev (using udevinfo) to
+# recent versions of udev (using udevadm info)
+if [ -x /sbin/udevadm ]
+then
+ udevinfo='/sbin/udevadm info'
+else
+ udevinfo='udevinfo'
+fi
+
+old_root_overlay_label="live-rw"
+old_home_overlay_label="home-rw"
+custom_overlay_label="custom-ov"
+root_snapshot_label="live-sn"
+old_root_snapshot_label="live-sn"
+home_snapshot_label="home-sn"
+persistence_list="live-persistence.conf"
+
+# include all scripts for the time being until snapshots are either dropped or cleaned up
+for _SCRIPT in /lib/live/boot/*
+do
+ if [ -e "${_SCRIPT}" ]
+ then
+ . ${_SCRIPT}
+ fi
+done
+## End FIXME: this is an embedded copy of the old 'live-helpers' initramfs script
LIVE_CONF="/etc/live/boot.d/snapshot.conf"