summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-09-27 16:04:01 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-09-27 16:04:01 +0000
commit67dcf3a015d3dad98946b110ae9e60d711082a11 (patch)
tree40d7620ff54c5b4b4b6bb06fcd9bb4a6b939c94e /perl-install/fsedit.pm
parentf6b37f7b9f0d43a5824dd1222c8f017e90ab801b (diff)
downloaddrakx-backup-do-not-use-67dcf3a015d3dad98946b110ae9e60d711082a11.tar
drakx-backup-do-not-use-67dcf3a015d3dad98946b110ae9e60d711082a11.tar.gz
drakx-backup-do-not-use-67dcf3a015d3dad98946b110ae9e60d711082a11.tar.bz2
drakx-backup-do-not-use-67dcf3a015d3dad98946b110ae9e60d711082a11.tar.xz
drakx-backup-do-not-use-67dcf3a015d3dad98946b110ae9e60d711082a11.zip
no_comment
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r--perl-install/fsedit.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index af1882186..0e6d2a049 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -168,7 +168,7 @@ sub suggest_part {
grep { !$part->{type} || $part->{type} == $_->{type} || isTrueFS($part) && isTrueFS($_) }
@$suggestions or return;
-#- if (arch() =~ /^i386/) {
+#- if (arch() =~ /i.86/) {
#- $best = $second if
#- $best->{mntpoint} eq '/boot' &&
#- $part->{start} + $best->{size} > 1024 * $hd->cylinder_size(); #- if the empty slot is beyond the 1024th cylinder, no use having /boot
@@ -257,7 +257,7 @@ sub check_mntpoint {
die "raid / with no /boot" if $mntpoint eq "/" && isMDRAID($part) && !has_mntpoint("/boot", $hds);
die _("This directory should remain within the root filesystem") if member($mntpoint, qw(/bin /dev /etc /lib /sbin));
die _("You need a true filesystem (ext2, reiserfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /home /tmp /usr /var));
-#- if ($part->{start} + $part->{size} > 1024 * $hd->cylinder_size() && arch() =~ /i386/) {
+#- if ($part->{start} + $part->{size} > 1024 * $hd->cylinder_size() && arch() =~ /i.86/) {
#- die "/boot ending on cylinder > 1024" if $mntpoint eq "/boot";
#- die "/ ending on cylinder > 1024" if $mntpoint eq "/" && !has_mntpoint("/boot", $hds);
#- }