diff options
author | maximilian attems <maks@debian.org> | 2006-01-24 19:44:11 +0100 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2006-01-24 19:44:11 +0100 |
commit | 3776f7f89abae55a448e008cf268385e119eb9ff (patch) | |
tree | 5424fbb58fc9ef89c050be786e342e024b31069e | |
parent | 0403b8bc09e6a4e499e3489ac24359a24e20d16a (diff) | |
download | initramfs-tools-3776f7f89abae55a448e008cf268385e119eb9ff.tar.gz initramfs-tools-3776f7f89abae55a448e008cf268385e119eb9ff.zip |
add dm_snapshot to the modules for booting on lvm snapshots
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | hooks/lvm | 2 |
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. @@ -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 |