From 50da598a3eb88f02f4d240aae7ee7e591d25cb84 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 6 Jul 2004 05:17:34 +0000 Subject: write_lilo handles "optional" --- perl-install/bootloader.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'perl-install') 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}; -- cgit v1.2.1