summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-12-07 11:34:57 +0000
committerThierry Vignaud <tv@mageia.org>2012-12-07 11:34:57 +0000
commiteeb09fdeb2c70b236317514be43f0baf245798e9 (patch)
tree509c2a07c31d379ad63bb3e48f3540f5ee034ac4
parent8872bb0056e12dbdeee8b406558c6e8e91117489 (diff)
downloaddrakx-eeb09fdeb2c70b236317514be43f0baf245798e9.tar
drakx-eeb09fdeb2c70b236317514be43f0baf245798e9.tar.gz
drakx-eeb09fdeb2c70b236317514be43f0baf245798e9.tar.bz2
drakx-eeb09fdeb2c70b236317514be43f0baf245798e9.tar.xz
drakx-eeb09fdeb2c70b236317514be43f0baf245798e9.zip
add grub2 support
(from rosa but cleaned) (also rosa work is way incomplete: no filling of $booloader and the like...)
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/bootloader.pm61
-rw-r--r--perl-install/install/NEWS3
3 files changed, 58 insertions, 9 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index b450bd7d4..3c469d6bd 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- add basic support for grub2 (mga#416)
+ (based on rosa work but fixed and completed)
+
Version 14.50 - 6 November 2012
- adapt to new reboot path
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index 8c615da26..844b6a911 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -752,6 +752,10 @@ sub add_kernel {
if (!$b_no_initrd) {
$v->{initrd} = mkinitrd($kernel_str->{version}, $bootloader, $v, "/boot/$initrd_long");
+ } else {
+ # we just set up copy of the universal initrd, and we need to add proper info
+ # in bootloader configuration
+ $v->{initrd} = '/boot/initrd.img';
}
if (!$b_nolink) {
@@ -764,7 +768,7 @@ sub add_kernel {
_do_the_symlink($bootloader, $v->{kernel_or_dev}, $vmlinuz_long);
}
- if ($v->{initrd}) {
+ if ($v->{initrd} && !$b_no_initrd) {
$v->{initrd} = '/boot/' . kernel_str2initrd_short($kernel_str);
if (arch() =~ /mips/) {
log::l("link $::prefix/boot/$initrd_long -> $::prefix$v->{initrd}");
@@ -1078,15 +1082,15 @@ sub suggest {
if_($options{vga_fb}, vga => $options{vga_fb}), #- using framebuffer
if_($options{vga_fb} && $options{splash}, append => "splash"),
if_($options{quiet}, append => "splash quiet"),
- });
+ }, "", 1);
if ($options{vga_fb} && $e->{label} eq 'linux') {
- add_kernel($bootloader, $kernel, { root => $root, label => 'linux-nonfb' });
+ add_kernel($bootloader, $kernel, { root => $root, label => 'linux-nonfb' }, "", 1);
}
}
add_kernel($bootloader, $kernels[0],
- { root => $root, label => 'failsafe', append => 'failsafe' })
+ { root => $root, label => 'failsafe', append => 'failsafe' }, "", 1)
if @kernels;
if (arch() =~ /ppc/) {
@@ -1128,6 +1132,7 @@ sub suggest {
method_choices($all_hds, 0)); # or best if no valid one is installed
if (main_method($bootloader->{method}) eq 'grub') {
+ my %processed_entries = {};
foreach my $c (find_other_distros_grub_conf($fstab)) {
my %h = (
type => 'grub_configfile',
@@ -1135,7 +1140,19 @@ sub suggest {
kernel_or_dev => "/dev/$c->{bootpart}{device}",
configfile => $c->{grub_conf},
);
- add_entry($bootloader, \%h);
+ if ($c->{root}) {
+ my $key = "$c->{name} - $c->{linux} - $c->{initrd}";
+ next if $processed_entries{$key};
+ $processed_entries{$key} = 1;
+ add_entry($bootloader, {
+ %h,
+ linux => $c->{linux},
+ initrd => $c->{initrd},
+ root => $c->{root},
+ });
+ } else {
+ add_entry($bootloader, \%h);
+ }
}
}
}
@@ -1838,7 +1855,18 @@ sub write_grub {
if_($entry->{'read-write'}, 'rw'),
if_($vga && $vga ne "normal", "vga=$vga"));
push @conf, "module " . $_ foreach @{$entry->{modules} || []};
- push @conf, join(' ', $entry->{xen} ? 'module' : 'initrd', $file2grub->($entry->{initrd})) if $entry->{initrd};
+ if ($entry->{initrd}) {
+ # split partition from initrd path and place
+ # it to a separate 'root' entry.
+ # Grub2's mkconfig takes initrd entry 'as is',
+ # but gru2 fails to load smth like '(hd0,1)/boot/initrd' taken from grub-legacy
+ my $initrd_path = $file2grub->($entry->{initrd});
+ if ($initrd_path =~ /^(\([^\)]+\))/) {
+ push @conf, "root $1";
+ $initrd_path =~ s/^(\([^\)]+\))//;
+ }
+ push @conf, join(' ', $entry->{xen} ? 'module' : 'initrd', $initrd_path);
+ }
} else {
my $dev = eval { device_string2grub($entry->{kernel_or_dev}, \@legacy_floppies, \@sorted_hds) };
if (!$dev) {
@@ -1847,7 +1875,9 @@ sub write_grub {
}
push @conf, $title;
push @conf, grep { $entry->{$_} } 'lock';
- push @conf, join(' ', $entry->{rootnoverify} ? 'rootnoverify' : 'root', $dev);
+ if ($entry->{type} ne 'grub_configfile' || $entry->{configfile} !~ /grub\.cfg/ || !$entry->{root}) {
+ push @conf, join(' ', $entry->{rootnoverify} ? 'rootnoverify' : 'root', $dev);
+ }
if ($entry->{table}) {
if (my $hd = fs::get::device2part($entry->{table}, \@sorted_hds)) {
@@ -1862,8 +1892,12 @@ sub write_grub {
push @conf, map_each { "map ($::b) ($::a)" } %{$entry->{mapdrive}};
}
push @conf, "makeactive" if $entry->{makeactive};
- if ($entry->{type} eq 'grub_configfile') {
+ # grub.cfg is grub2 config, can't use it as configfile for grub-legacy
+ if ($entry->{type} eq 'grub_configfile' && $entry->{configfile} !~ /grub\.cfg/) {
push @conf, "configfile $entry->{configfile}";
+ } elsif ($entry->{linux}) {
+ push @conf, "root $entry->{root}", "kernel $entry->{linux}";
+ push @conf, "initrd $entry->{initrd}" if $entry->{initrd};
} else {
push @conf, "chainloader +1";
}
@@ -2056,6 +2090,15 @@ sub find_other_distros_grub_conf {
my $f = find { -e "$handle->{dir}$bootdir/$_" } 'grub.conf', 'grub/menu.lst' or next;
push @l, { bootpart => $part, bootdir => $bootdir, grub_conf => "$bootdir/$f" };
}
+ foreach my $bootdir ('', '/boot', '/boot/grub', '/boot/grub2') {
+ my $f = find { -e "$handle->{dir}$bootdir/$_" } 'grub.cfg' or next;
+ my $parttype = partition_table::raw::typeOfMBR($part->{device});
+ if (!$parttype || $parttype eq "empty") {
+ parse_grub2_config(\@l, "$handle->{dir}/$bootdir/$f", $part);
+ } else {
+ push @l, { bootpart => $part, bootdir => $bootdir, grub_conf => "$bootdir/$f" };
+ }
+ }
if (my $f = common::release_file($handle->{dir})) {
my $h = common::parse_release_file($handle->{dir}, $f, $part);
$h->{name} = $h->{release};
@@ -2097,7 +2140,7 @@ sub find_other_distros_grub_conf {
} else {
log::l("could not recognise the distribution for $e->{grub_conf} in $e->{bootpart}{device}");
}
- $e->{name} ||= "Linux $e->{bootpart}{device}";
+ $e->{name} = $e->{menuentry} || "Linux $e->{bootpart}{device}";
push @found, $e;
}
}
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index cf53fa06f..fbbe7cdba 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,6 @@
+- add basic support for grub2 (mga#416)
+ (based on rosa work but fixed and completed)
+
Version 15.0 - 6 December 2012
- enable to skip keyboard step with keyboard option