From b4fe444b64b82d57ba3f53f737cfb79fbc8eb1e7 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Fri, 16 Oct 2009 10:25:21 +0000 Subject: Handle LVM (#44723) --- rescue/NEWS | 2 ++ rescue/guessmounts | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'rescue') diff --git a/rescue/NEWS b/rescue/NEWS index 7833e54f6..5751ca5cb 100644 --- a/rescue/NEWS +++ b/rescue/NEWS @@ -1,3 +1,5 @@ +- Handle LVM (#44723) + Version 1.16 - 9 October 2009, by Olivier "blino" Blin - work both with squashfs 3 and 4 diff --git a/rescue/guessmounts b/rescue/guessmounts index c755e0743..dddeaed26 100755 --- a/rescue/guessmounts +++ b/rescue/guessmounts @@ -17,7 +17,8 @@ use common; use fs; use fs::proc_partitions; use fs::type; - +use lvm; +use run_program; my @proc_mounts = fs::read_fstab('', '/proc/mounts'); @@ -34,6 +35,9 @@ print STDERR "\nPlease wait, trying to find your root device...\n"; mkdir_p($target); +run_program::run('lvm2', 'vgscan'); +run_program::run('lvm2', 'vgchange', '-a', 'y'); + my @parts = map { $_->{device} = delete $_->{dev}; put_in_hash($_, fs::type::type_subpart_from_magic($_)); -- cgit v1.2.1