diff options
author | Thierry.Vignaud <thierry.vignaud@gmail.com> | 2014-05-26 14:11:43 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-05-26 22:15:28 +0200 |
commit | 6d3faeb9846f336be402f1acab8ffabf3233560f (patch) | |
tree | a806282f568f24375418408581da63ef1d32baf4 /perl-install/fs/partitioning_wizard.pm | |
parent | 645d131e5297764a853d504366f409b3952760b1 (diff) | |
download | drakx-6d3faeb9846f336be402f1acab8ffabf3233560f.tar drakx-6d3faeb9846f336be402f1acab8ffabf3233560f.tar.gz drakx-6d3faeb9846f336be402f1acab8ffabf3233560f.tar.bz2 drakx-6d3faeb9846f336be402f1acab8ffabf3233560f.tar.xz drakx-6d3faeb9846f336be402f1acab8ffabf3233560f.zip |
drop (broken) support for Alpha, PPC, Sparc & most of IA64
Including Xsun, silo & yaboot support
Rationale: it's unused/unmaintained for years and those arches are beyond
any hope of being usefull any day...
They just got in the way...
Part of IA64 support is still kept (eg: support for GPT, EFI, right xorg
driver at install, ...) as it might be usefull to extend to other arches
Next to consider: Xbox?
Diffstat (limited to 'perl-install/fs/partitioning_wizard.pm')
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index ddd54c9ec..caea9cab6 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -64,7 +64,7 @@ Then choose action ``Mount point'' and set it to `/'"), 1) or return; if (!any { isSwap($_) } @fstab) { $ok &&= $in->ask_okcancel('', N("You do not have a swap partition.\n\nContinue anyway?")); } - if (arch() =~ /ia64/ && !fs::get::has_mntpoint("/boot/efi", $all_hds)) { + if (!fs::get::has_mntpoint("/boot/efi", $all_hds)) { $in->ask_warn('', N("You must have a FAT partition mounted in /boot/efi")); $ok = ''; } @@ -269,11 +269,7 @@ filesystem checks will be run on your next boot into Microsoft Windows®")) if $ When you are done, do not forget to save using `w'", partition_table::description($_)); print "\n\n"; my $pid = 0; - if (arch() =~ /ppc/) { - $pid = fork() or exec "pdisk", devices::make($_->{device}); - } else { $pid = fork() or exec "fdisk", devices::make($_->{device}); - } waitpid($pid, 0); } $in->leave_console; @@ -402,7 +398,7 @@ sub create_display_box { } $display_box->remove($part_sep) if $part_sep; unless ($resize || $fill_empty) { - my @types = (N_("Ext2/3/4"), N_("XFS"), N_("Swap"), arch() =~ /sparc/ ? N_("SunOS") : arch() eq "ppc" ? N_("HFS") : N_("Windows"), + my @types = (N_("Ext2/3/4"), N_("XFS"), N_("Swap"), N_("Windows"), N_("Other"), N_("Empty")); my %name2fs_type = ('Ext2/3/4' => 'ext3', 'XFS' => 'xfs', Swap => 'swap', Other => 'other', "Windows" => 'vfat', HFS => 'hfs'); $desc = ugtk3::gtkpack(Gtk3::HBox->new, |