diff options
-rw-r--r-- | perl-install/bootloader.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 719e7b887..7d6afbe1d 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -983,6 +983,7 @@ sub write_lilo { push @entry_conf, qq(append="$entry->{append}") if $entry->{append}; push @entry_conf, "vga=$entry->{vga}" if $entry->{vga}; push @entry_conf, $entry->{'read-write'} ? "read-write" : "read-only"; + push @entry_conf, grep { $entry->{$_} } qw(optional); } else { push @entry_conf, "table=$entry->{table}" if $entry->{table}; push @entry_conf, "unsafe" if $entry->{unsafe} && !$entry->{table}; |