diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-22 15:46:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-22 15:46:09 +0000 |
commit | 6e78f94daaf9d815470a6e789e16e3834e520fdd (patch) | |
tree | bf3ef1db243bda767ad70375a6ca70b1328b2ebe /perl-install/bootloader.pm | |
parent | 1a834a069add6dc87b56d746858c76fc59802f90 (diff) | |
download | drakx-backup-do-not-use-6e78f94daaf9d815470a6e789e16e3834e520fdd.tar drakx-backup-do-not-use-6e78f94daaf9d815470a6e789e16e3834e520fdd.tar.gz drakx-backup-do-not-use-6e78f94daaf9d815470a6e789e16e3834e520fdd.tar.bz2 drakx-backup-do-not-use-6e78f94daaf9d815470a6e789e16e3834e520fdd.tar.xz drakx-backup-do-not-use-6e78f94daaf9d815470a6e789e16e3834e520fdd.zip |
put ignore-table to disable lilo's partition table checking
(esp. the checking of the CHS geometry vs linear geometry)
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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}) { |