summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2006-01-24 19:44:11 +0100
committermaximilian attems <maks@debian.org>2006-01-24 19:44:11 +0100
commit3776f7f89abae55a448e008cf268385e119eb9ff (patch)
tree5424fbb58fc9ef89c050be786e342e024b31069e
parent0403b8bc09e6a4e499e3489ac24359a24e20d16a (diff)
downloadinitramfs-tools-3776f7f89abae55a448e008cf268385e119eb9ff.tar.gz
initramfs-tools-3776f7f89abae55a448e008cf268385e119eb9ff.zip
add dm_snapshot to the modules for booting on lvm snapshots
-rw-r--r--debian/changelog7
-rwxr-xr-xhooks/lvm2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index fb9f4ac..e783755 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+initramfs-tools (0.52) unstable; urgency=low
+
+ * hooks/lvm: manual_add_modules dm_snapshot, allows to boot from a snapshot
+ of your root device. (ubuntu: #3842)
+
+ -- maximilian attems <maks@sternwelten.at> Tue, 24 Jan 2006 19:40:25 +0100
+
initramfs-tools (0.51) unstable; urgency=low
* scripts/functions: Call panic on circular deps to get rescue shell.
diff --git a/hooks/lvm b/hooks/lvm
index 9022dce..63316e5 100755
--- a/hooks/lvm
+++ b/hooks/lvm
@@ -22,6 +22,6 @@ fi
copy_exec /lib/lvm-200/vgchange /sbin
-for x in dm_mod; do
+for x in dm_mod dm_snapshot; do
manual_add_modules ${x}
done