summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2005-11-02 07:24:30 +0100
committermaximilian attems <maks@debian.org>2005-11-02 07:24:30 +0100
commit53cd915c489b5a5fd8be4a8cb532c2986859ba9b (patch)
tree7262a4f0833ef86ea42682ec98281f71688ddc04
parent32b804ba08c6d1bbc08491bcb0d50c6e84a75b98 (diff)
downloadinitramfs-tools-53cd915c489b5a5fd8be4a8cb532c2986859ba9b.tar.gz
initramfs-tools-53cd915c489b5a5fd8be4a8cb532c2986859ba9b.zip
fix evms root by adding dm_mod module to the initramfs image.
-rw-r--r--debian/changelog9
-rwxr-xr-xhooks/evms4
2 files changed, 11 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index fea4793..70ac2ae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,7 +2,7 @@ initramfs-tools (0.38) unstable; urgency=low
[ dann frazier ]
- * initramfs.conf: Reference correct manpage. Closes: #336095
+ * initramfs.conf: Reference correct manpage. (Closes: #336095)
[ maximilian attems ]
@@ -10,7 +10,12 @@ initramfs-tools (0.38) unstable; urgency=low
by using decimal numbers. Thanks to Adrian Bridgett <adrian@smop.co.uk>
for the patch. (Closes: #336936)
- -- maximilian attems <maks@sternwelten.at> Wed, 2 Nov 2005 07:10:45 +0100
+ * hooks/evms: manual_add_module dm_mod, now we no longer pull it in by
+ default. Thanks to Steinar H. Gunderson <sesse@debian.org>
+ (Closes: #336617)
+
+
+ -- maximilian attems <maks@sternwelten.at> Wed, 2 Nov 2005 07:21:29 +0100
initramfs-tools (0.37) unstable; urgency=low
diff --git a/hooks/evms b/hooks/evms
index 456feac..21dc562 100755
--- a/hooks/evms
+++ b/hooks/evms
@@ -29,3 +29,7 @@ mkdir -p ${DESTDIR}/lib/evms/${EVMS_VERSION}
for x in disk lvm2 dos multipath; do
cp /lib/evms/${EVMS_VERSION}/${x}* ${DESTDIR}/lib/evms/${EVMS_VERSION}
done
+
+for x in dm_mod; do
+ manual_add_modules ${x}
+done