summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2013-02-27 17:44:16 +0000
committerThierry Vignaud <tv@mageia.org>2013-02-27 17:44:16 +0000
commit95b9db548548b3e3f8aaac187ca2f4573f6bbaec (patch)
tree74f210f57d6c3dcb1516984560112a0c0c0a5fdc /perl-install
parent60ca8dcc1f62b6fa150b679d35d7bcab544def30 (diff)
downloaddrakx-backup-do-not-use-95b9db548548b3e3f8aaac187ca2f4573f6bbaec.tar
drakx-backup-do-not-use-95b9db548548b3e3f8aaac187ca2f4573f6bbaec.tar.gz
drakx-backup-do-not-use-95b9db548548b3e3f8aaac187ca2f4573f6bbaec.tar.bz2
drakx-backup-do-not-use-95b9db548548b3e3f8aaac187ca2f4573f6bbaec.tar.xz
drakx-backup-do-not-use-95b9db548548b3e3f8aaac187ca2f4573f6bbaec.zip
fix installing grub2 on a partition (mga#8462)
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/bootloader.pm7
-rw-r--r--perl-install/install/NEWS3
3 files changed, 12 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index c2a725d3d..2728b132e 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- drakboot:
+ o allow installing grub2 on a partition (mga#8462)
+
Version 15.23 - 27 February 2013
- drakboot:
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index 5c89d055b..2512842a2 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -2009,7 +2009,12 @@ sub install_grub2 {
my $error;
write_grub2($bootloader, $all_hds);
my $boot = $bootloader->{boot}
- run_program::rooted($::prefix, 'grub2-install', '2>', \$error, $boot) or die "grub2-install failed: $error";
+ # if (member($boot, map { "/dev/$_->{device}" } @{$all_hds->{hds}}) {
+ if ($boot =~ /\d$/) {
+ run_program::rooted($::prefix, 'grub2-install', '2>', \$error, '--grub-setup=/bin/true', $boot) or die "grub2-install failed: $error";
+ } else {
+ run_program::rooted($::prefix, 'grub2-install', '2>', \$error, $boot) or die "grub2-install failed: $error";
+ }
setVarsInSh("$::prefix/boot/grub2/drakboot.conf", { boot => $boot });
}
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 91f2c5774..7c0aaac2e 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,6 @@
+- bootloader:
+ o allow installing grub2 on a partition (mga#8462)
+
Version 15.23 - 27 February 2013
- bootloader: