diff options
| -rw-r--r-- | perl-install/install_steps.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index dd3ad5cda..0b33b0f10 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -382,6 +382,12 @@ Either your cdrom drive or your cdrom is defective. Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm\" ") if grep { m|read failed: Input/output error| } cat_("$o->{prefix}/root/drakx/install.log"); + # make a tty, zero and loop devices to avoid problem when rebooting & mkinitrd, only ia64 arch (pb with devfs) + if ( arch() =~ /ia64/ ) { + run_program::rooted($o->{prefix}, "MAKEDEV", "-m 3", $_ ) foreach + qw(zero tty loop sd); + } + if (arch() !~ /^sparc/) { #- TODO restore it as may be needed for sparc -x "$o->{prefix}/usr/bin/dumpkeys" or $::testing or die "Some important packages didn't get installed properly. |
