summaryrefslogtreecommitdiffstats
path: root/perl-install/bootloader.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-09-19 13:55:25 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-09-19 13:55:25 +0000
commit647236e1a4d9eee6d4a822c192920af5a1e2f99a (patch)
treed63632e6904c062eed9c99e2527091834964d86c /perl-install/bootloader.pm
parent4d0805d58380ee8645542919c7b3ea8b2be19114 (diff)
downloaddrakx-backup-do-not-use-647236e1a4d9eee6d4a822c192920af5a1e2f99a.tar
drakx-backup-do-not-use-647236e1a4d9eee6d4a822c192920af5a1e2f99a.tar.gz
drakx-backup-do-not-use-647236e1a4d9eee6d4a822c192920af5a1e2f99a.tar.bz2
drakx-backup-do-not-use-647236e1a4d9eee6d4a822c192920af5a1e2f99a.tar.xz
drakx-backup-do-not-use-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.pm3
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;