summaryrefslogtreecommitdiffstats
path: root/rescue/guessmounts
diff options
context:
space:
mode:
Diffstat (limited to 'rescue/guessmounts')
-rwxr-xr-xrescue/guessmounts16
1 files changed, 15 insertions, 1 deletions
diff --git a/rescue/guessmounts b/rescue/guessmounts
index 67ef6c536..9b592f07e 100755
--- a/rescue/guessmounts
+++ b/rescue/guessmounts
@@ -85,7 +85,21 @@ if (@roots) {
@roots = sort { $b->{version} cmp $a->{version} } @roots;
# Then pick mga over mdv:
@roots = map { @$_ } partition { $_->{release} =~ /Mageia/ } @roots;
- my $selected = first(@roots);
+
+ my $selected;
+ if (@roots == 1) {
+ $selected = first(@roots);
+ } else {
+ print "\n\nWhich system do you want to rescue?\n";
+ each_index { print $::i + 1, ": $_->{pretty_name}\n" } @roots;
+ my $res;
+ while ($res < 1 || $res > @roots) {
+ print "what is your choice (type the number of your selection or C^c to abort)?\n";
+ $res = <>;
+ }
+ $selected = $roots[$res-1];
+ }
+
$root = $selected->{dev};
$fs = $selected->{fs};
@fstab = @{$selected->{fstab}};