summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/ChangeLog4
-rw-r--r--perl-install/modules.pm2
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;
}