diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-07-18 15:54:47 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-07-18 15:54:47 +0000 |
commit | 4239729f41a697b744609b24993e756ec48a1303 (patch) | |
tree | f580e59394e46ecb529d65cec9c35911bf244292 /perl-install/install_steps.pm | |
parent | 51b0ae8285a511e53be6f27fbaff0825d8a1c8c2 (diff) | |
download | drakx-4239729f41a697b744609b24993e756ec48a1303.tar drakx-4239729f41a697b744609b24993e756ec48a1303.tar.gz drakx-4239729f41a697b744609b24993e756ec48a1303.tar.bz2 drakx-4239729f41a697b744609b24993e756ec48a1303.tar.xz drakx-4239729f41a697b744609b24993e756ec48a1303.zip |
roll back some changes from PPC beta - OldWorld vs NewWorld bootloader
modem detection on ttyS0, new sound module in 2.4.4
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 31f6e6856..3ee069165 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -151,7 +151,11 @@ sub doPartitionDisksAfter { $o->{fstab} = [ fsedit::get_fstab(@{$o->{hds}}, @{$o->{lvms}}, $o->{raid}) ]; fsedit::get_root_($o->{fstab}) or die "Oops, no root partition"; - + + if (arch() =~ /ppc/ && detect_devices::get_mac_generation =~ /NewWorld/) { + die "Need bootstrap partition to boot system!" if !(defined $partition_table_mac::bootstrap_part); + } + if (arch() =~ /ia64/ && !fsedit::has_mntpoint("/boot/efi", $o->{hds})) { die _("You must have a FAT partition mounted in /boot/efi"); } |