diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-09-19 13:55:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-09-19 13:55:25 +0000 |
commit | 647236e1a4d9eee6d4a822c192920af5a1e2f99a (patch) | |
tree | d63632e6904c062eed9c99e2527091834964d86c /perl-install/bootloader.pm | |
parent | 4d0805d58380ee8645542919c7b3ea8b2be19114 (diff) | |
download | drakx-647236e1a4d9eee6d4a822c192920af5a1e2f99a.tar drakx-647236e1a4d9eee6d4a822c192920af5a1e2f99a.tar.gz drakx-647236e1a4d9eee6d4a822c192920af5a1e2f99a.tar.bz2 drakx-647236e1a4d9eee6d4a822c192920af5a1e2f99a.tar.xz drakx-647236e1a4d9eee6d4a822c192920af5a1e2f99a.zip |
- bootloader-config, drakboot:
o handle /boot/grub/install.sh with no "root (hd...)" line
(this is the case for grub's installed prior to 2005-06-16)
(#43786, #43431)
nb: "bootloader-config --action migrate-to-uuids" should be done prior to
booting with a different layout, and so /boot/grub/install.sh is regenerated
and will include "root (hd...)" line
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 1bc6a05ea..a046c01b1 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -231,6 +231,9 @@ sub read_grub { # - $grub2dev is /boot/grub/device.map sub _may_fix_grub2dev { my ($fstab, $grub2dev, $boot_part) = @_; + + $boot_part or log::l("install.sh does not contain 'root (hd...)' line, no way to magically adapt device.map"), return; + my $real_boot_part = fs::get::root_($fstab, 'boot') or log::l("argh... the fstab given is useless, it doesn't contain '/'"), return; |