diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 7d9dd3f18..d5255d96d 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -6,6 +6,7 @@ o unmount swap too when unmounting all partitions o do not suggest Windows mountpoint for mounted partitions (breaks install if the Win partition is the installer media) + o suggest non-removable disks first - harddrake: o do not display bogus "0" ids for hard disks o fix detecting some mice diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index 2a354bfaf..a30626b52 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -502,7 +502,7 @@ sub main { my $mainbox = Gtk2::VBox->new; - my @kinds = map { diskdrake::hd_gtk::hd2kind($_) } @{$all_hds->{hds}}; + my @kinds = map { diskdrake::hd_gtk::hd2kind($_) } sort { $a->{is_removable} <=> $b->{is_removable} } @{$all_hds->{hds}}; my $hdchoice = Gtk2::HBox->new; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index c2975ec5d..7b961eebf 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -9,6 +9,7 @@ o unmount swap too when unmounting all partitions o do not suggest Windows mountpoint for mounted partitions (breaks install if the Win partition is the installer media) + o suggest non-removable disks first - do not stay chdired in /mnt/var/cache/urpmi when download fails (workaround urpmi bug) - bootloader: |