diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-11-23 13:58:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-11-23 13:58:07 +0000 |
commit | 0936dccf3a3dbb7e09fac08e4af3d869f00d90f3 (patch) | |
tree | 9ae868f74512a56bf1149179c6f7ddaee5dd5cac | |
parent | c59821e2c2d7ece43b1dcaf51877539ea255f6ca (diff) | |
download | drakx-0936dccf3a3dbb7e09fac08e4af3d869f00d90f3.tar drakx-0936dccf3a3dbb7e09fac08e4af3d869f00d90f3.tar.gz drakx-0936dccf3a3dbb7e09fac08e4af3d869f00d90f3.tar.bz2 drakx-0936dccf3a3dbb7e09fac08e4af3d869f00d90f3.tar.xz drakx-0936dccf3a3dbb7e09fac08e4af3d869f00d90f3.zip |
detect on lilo on floppy (bugzilla #12213)
-rw-r--r-- | perl-install/partition_table/raw.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/partition_table/raw.pm b/perl-install/partition_table/raw.pm index 4ed615b2a..0e87cda9d 100644 --- a/perl-install/partition_table/raw.pm +++ b/perl-install/partition_table/raw.pm @@ -20,6 +20,7 @@ if_(arch() =~ /ppc/, [ 'grub', 0, "\xEBH", 0x181, "GRUB \0" ], [ 'lilo', 0x2, "LILO" ], [ 'lilo', 0x6, "LILO" ], + [ 'lilo', 0x6 + 0x40, "LILO" ], #- when relocated in lilo's bsect_update(), variable "space" on paragraph boundary gives 0x40 [ 'grub', 0x6, "GRUB" ], [ 'osbs', 0x2, "OSBS" ], #- http://www.prz.tu-berlin.de/~wolf/os-bs.html [ 'pqmagic', 0xef, "PQV" ], |