From 328b3472f726cf029237af00bd703caeb200f928 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 30 Nov 2009 14:29:19 +0000 Subject: suggest non-removable disks first --- perl-install/NEWS | 1 + perl-install/fs/partitioning_wizard.pm | 2 +- perl-install/install/NEWS | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) 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: -- cgit v1.2.1