summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/fs.pm2
-rw-r--r--perl-install/install/NEWS2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index ea95242cc..a5b24edab 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -301,7 +301,7 @@ sub set_removable_mntpoints {
my %names;
foreach (@{$all_hds->{raw_hds}}) {
my $name = detect_devices::suggest_mount_point($_) or next;
- $name eq 'zip' and next;
+ $name eq 'zip' || $name eq 'cdrom' and next;
my $s = ++$names{$name};
$_->{mntpoint} ||= "/media/$name" . ($s == 1 ? '' : $s);
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 1bc223dff..70cd79c7a 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -2,6 +2,8 @@
Core by the way)
- auto allocate: do not create /home if drive is smaller than 7GB
- do not propose to deselect media if none can be deselected
+- no more /media/cdrom in fstab by default
+ (not needed anymore by urpmi)
- use and install ntfs-3g by default for ntfs partitions (#37823)
Version 10.6.25 - 28 February 2008