diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-02-14 21:51:52 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-02-14 21:51:52 +0000 |
commit | 98dda60d4c4ea7615d101ce9408e9785a874eed9 (patch) | |
tree | 7e75c2c72da8acaf9ace5f9619f0272fdf2c5de2 /perl-install | |
parent | b665d3c80aa66b6f440ead49ac606e0702ffefd9 (diff) | |
download | drakx-98dda60d4c4ea7615d101ce9408e9785a874eed9.tar drakx-98dda60d4c4ea7615d101ce9408e9785a874eed9.tar.gz drakx-98dda60d4c4ea7615d101ce9408e9785a874eed9.tar.bz2 drakx-98dda60d4c4ea7615d101ce9408e9785a874eed9.tar.xz drakx-98dda60d4c4ea7615d101ce9408e9785a874eed9.zip |
no_comment
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/ChangeLog | 4 | ||||
-rw-r--r-- | perl-install/modules.pm | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog index 2b5fce5c2..26f31ca8c 100644 --- a/perl-install/ChangeLog +++ b/perl-install/ChangeLog @@ -1,3 +1,7 @@ +2000-02-14 Pixel <pixel@mandrakesoft.com> + + * diskdrake.pm (Create): hide start sector choice for non-expert + 2000-02-11 Pixel <pixel@mandrakesoft.com> * partition_table_raw.pm (get_geometry): do not use the cylinder diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 57bc2268d..e72ee9093 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -375,7 +375,7 @@ sub load { if ($type) { add_alias('usbmouse', $name) if $type =~ /serial_usb/i; - add_alias('scsi_hostadapter', $name) if $type eq 'scsi'; + add_alias('scsi_hostadapter', $name) if $type eq "scsi" || $type eq $type_aliases{scsi}; } $conf{$name}{options} = join " ", @options if @options; } |