diff options
author | maximilian attems <maks@debian.org> | 2006-06-29 21:42:45 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2006-06-29 21:42:45 +0200 |
commit | 09276c4c9f7deb9a46cf162747b5749f94738c2b (patch) | |
tree | bf29a9ebde5281f220a83af255310bf6e09cb8b0 | |
parent | 42579f456b1a87627a1416b3f80c51d9f15fb09a (diff) | |
download | initramfs-tools-09276c4c9f7deb9a46cf162747b5749f94738c2b.tar.gz initramfs-tools-09276c4c9f7deb9a46cf162747b5749f94738c2b.zip |
refix lilo root on lvm boot
-rw-r--r-- | debian/changelog | 5 | ||||
-rwxr-xr-x | scripts/local-top/lvm | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index ed11e31..b1e3272 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,7 +8,10 @@ initramfs-tools (0.66) unstable; urgency=low * scripts/function: Fix typo s/FS1/PS1/ on panic call. (closes: #375624) Thanks to Tim Phipps <tim@phipps-hutton.freeserve.co.uk> for the report. - -- maximilian attems <maks@sternwelten.at> Tue, 27 Jun 2006 14:04:17 +0200 + * scripts/local-top/lvm: Refix lilo check. (closes: #375786) + Thanks to the patch from Christian Weeks <christian.weeks@oracle.com>. + + -- maximilian attems <maks@sternwelten.at> Wed, 28 Jun 2006 12:11:49 +0200 initramfs-tools (0.65b) unstable; urgency=low diff --git a/scripts/local-top/lvm b/scripts/local-top/lvm index 3b012ec..fc1036e 100755 --- a/scripts/local-top/lvm +++ b/scripts/local-top/lvm @@ -30,6 +30,11 @@ activate_vg() vgchange -ay exit 0 ;; + # FIXME: check major + /dev/root) + vgchange -ay + exit 0 + ;; esac # Make sure that we have a d-m path |