diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2001-11-12 15:28:25 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2001-11-12 15:28:25 +0000 |
commit | 684d6df5cd365618159c9cd1ebb514730a370b2f (patch) | |
tree | 18d6e5d0616cece95d6e58b35bba8ccb69bf292f | |
parent | 1359dc144625aeb78f3f1b0dffbfed6e96b89cde (diff) | |
download | drakx-684d6df5cd365618159c9cd1ebb514730a370b2f.tar drakx-684d6df5cd365618159c9cd1ebb514730a370b2f.tar.gz drakx-684d6df5cd365618159c9cd1ebb514730a370b2f.tar.bz2 drakx-684d6df5cd365618159c9cd1ebb514730a370b2f.tar.xz drakx-684d6df5cd365618159c9cd1ebb514730a370b2f.zip |
- Don't create a boot disk on ia64
-rw-r--r-- | perl-install/steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/steps.pm b/perl-install/steps.pm index 8997210a6..a5d309300 100644 --- a/perl-install/steps.pm +++ b/perl-install/steps.pm @@ -26,7 +26,7 @@ use common; configureNetwork => [ __("Configure networking"), 1, 1, '', "formatPartitions", 'network' ], summary => [ __("Summary"), 1, 0, '', "installPackages", 'summary' ], configureServices => [ __("Configure services"), 1, 1, '!$::expert', "installPackages", 'services' ], -if_((arch() !~ /alpha/) && (arch() !~ /ppc/), +if_((arch() !~ /alpha/) && (arch() !~ /ppc/) && (arch() !~ /ia64/), createBootdisk => [ __("Create a bootdisk"), 1, 0, '', "installPackages", 'bootdisk' ], ), setupBootloader => [ __("Install bootloader"), 1, 0, '', "installPackages", 'bootloader' ], |