From 6e78f94daaf9d815470a6e789e16e3834e520fdd Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Fri, 22 Feb 2002 15:46:09 +0000 Subject: put ignore-table to disable lilo's partition table checking (esp. the checking of the CHS geometry vs linear geometry) --- perl-install/bootloader.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index dc3e2ae7c..7d4dcdc89 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -755,7 +755,7 @@ sub write_lilo_conf { print F "\tread-only" if !$_->{'read-write'}; } else { print F "\ttable=$_->{table}" if $_->{table}; - print F "\tunsafe" if $_->{unsafe} && !$_->{table}; + print F $_->{table} ? "\tignore-table" : "\tunsafe" if $_->{unsafe}; if (my ($dev) = $_->{table} =~ m|/dev/(.*)|) { if ($dev2bios{$dev}) { -- cgit v1.2.1