diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-04-04 13:59:26 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-04-04 13:59:26 +0000 |
commit | 0b5bf3f0964824c7a7e496e3e485bc5be265f265 (patch) | |
tree | dddf062fdeb05a8ce8da3de79c2045c13c87b8df /perl-install/standalone/bootloader-config | |
parent | 425bd3385636d20fa165af7b9b633d68ca98de7f (diff) | |
download | drakx-0b5bf3f0964824c7a7e496e3e485bc5be265f265.tar drakx-0b5bf3f0964824c7a7e496e3e485bc5be265f265.tar.gz drakx-0b5bf3f0964824c7a7e496e3e485bc5be265f265.tar.bz2 drakx-0b5bf3f0964824c7a7e496e3e485bc5be265f265.tar.xz drakx-0b5bf3f0964824c7a7e496e3e485bc5be265f265.zip |
fix adding bogues bootloader entries (root=/dev/)
We were silently failing to lookup / partition (mga#8717)
It was actually broken since Pixel introduced the check in commit
r208774 on 2004-08-17 ("better error handling")
Diffstat (limited to 'perl-install/standalone/bootloader-config')
-rwxr-xr-x | perl-install/standalone/bootloader-config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/bootloader-config b/perl-install/standalone/bootloader-config index b68cef028..1eea07bce 100755 --- a/perl-install/standalone/bootloader-config +++ b/perl-install/standalone/bootloader-config @@ -153,7 +153,7 @@ sub add_kernel() { return; } - my $root_part = fs::get::root([ fs::get::fstab($all_hds) ]) or die "cannot find root partition\n"; + my $root_part = fs::get::root_([ fs::get::fstab($all_hds) ]) or warn "cannot find root partition in /etc/fstab\n"; my %opts = ( root => fs::wild_device::from_part('', $root_part), initrd_options => $initrd_options, |