1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#!/usr/bin/perl
#
# Guillaume Cottenceau
#
# Copyright 2001-2005 Mandriva
#
# This software may be freely redistributed under the terms of the GNU
# public license.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
use lib qw(/usr/lib/libDrakX);
use common;
use bootloader;
use fs;
if ($ARGV[0] eq '--auto') {
$auto = shift @ARGV;
}
$::prefix = '/mnt';
my $release = common::mandrake_release($::prefix) ||
do {
system('guessmounts') == 0 or die 'guessmounts failed';
common::mandrake_release($::prefix);
};
if ($release) {
$release =~ /Mageia|Mandriva/ or die "release file doesn't contain '%s', exiting.\n";
} elsif (fs::get::mntpoint2part($::prefix, [ fs::read_fstab('', '/proc/mounts') ])) {
die "unknown distribution mounted in $::prefix\n";
} else {
die "Your root device isn't mounted on $::prefix\n";
}
my @main_methods = bootloader::configured_main_methods();
my $main_method;
if (@main_methods == 0) {
die "Cannot find a configured boot loader\n";
} elsif (@main_methods == 1) {
($main_method) = @main_methods;
} else {
while (1) {
print "Configuration files for Boot Loaders ", join(' and ', @main_methods), " were found.\n";
print "Which one one should be installed? ";
chomp($main_method = <STDIN>);
if (member($main_method, @main_methods)) {
last;
} else {
print "bad choice\n";
}
}
}
my $install = $bootloader::{'install_raw_' . $main_method} or die "unknown bootloader method install_raw_$main_method\n";
print "About to re-install Boot Loader $main_method of following %s distribution:\n\t",
$release, "\n";
if (!$auto) {
print "=> ok? <press Enter to continue, 'n' and Enter to cancel> ";
<STDIN> =~ /^n/i and exit 0;
}
$install->();
|