summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--perl-install/install_steps_auto_install.pm11
2 files changed, 12 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 67a2b4e81..603b25d84 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ ARCH := $(patsubst sparc%,sparc,$(ARCH))
RELEASE_BOOT_IMG = hd.img cdrom.img network.img
ifeq (i386,$(ARCH))
-RELEASE_BOOT_IMG += pcmcia.img
+RELEASE_BOOT_IMG += pcmcia.img blank.img
endif
ifeq (sparc,$(ARCH))
BOOT_IMG = live.img tftp.img tftprd.img live64.img tftp64.img tftprd64.img
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm
index 7b20db611..4b585f7e6 100644
--- a/perl-install/install_steps_auto_install.pm
+++ b/perl-install/install_steps_auto_install.pm
@@ -3,6 +3,7 @@ package install_steps_auto_install;
use diagnostics;
use strict;
use netconnect;
+use lang;
use vars qw(@ISA);
@ISA = qw(install_steps);
@@ -59,6 +60,16 @@ sub errorInStep {
c::_exit(0);
}
+
+#-######################################################################################
+#- Steps Functions
+#-######################################################################################
+sub selectLanguage {
+ my ($o) = @_;
+ $o->SUPER::selectLanguage;
+ lang::load_console_font($o->{lang});
+}
+
sub exitInstall {
my ($o, $alldone) = @_;
return if $o->{autoExitInstall};