diff options
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 59fdfeb36..8446e7ba6 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -380,7 +380,9 @@ wait %d seconds for default boot. type => 'other', kernel_or_dev => "/dev/$_->{device}", label => $label . ($nbs{$label}++ ? $nbs{$label} : ''), - table => "/dev/$_->{rootDevice}", + if_($_->{device} =~ /[1-4]$/, + table => "/dev/$_->{rootDevice}" + ), unsafe => 1 }) if isNT($_) || isFat($_) && isFat({ type => fsedit::typeOfPart($_->{device}) }); } |