summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-08-22 12:23:28 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-08-22 12:23:28 +0000
commitc5041d48b9c474ba7103636dd5f5a4861b142f52 (patch)
tree268c5cf6a16aa245c169812e2b9f7a43853c8230
parentc8df9e15abd6e408e5fc6f4913a21b60f9dae052 (diff)
downloaddrakx-c5041d48b9c474ba7103636dd5f5a4861b142f52.tar
drakx-c5041d48b9c474ba7103636dd5f5a4861b142f52.tar.gz
drakx-c5041d48b9c474ba7103636dd5f5a4861b142f52.tar.bz2
drakx-c5041d48b9c474ba7103636dd5f5a4861b142f52.tar.xz
drakx-c5041d48b9c474ba7103636dd5f5a4861b142f52.zip
fix typo
-rw-r--r--perl-install/bootlook.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootlook.pm b/perl-install/bootlook.pm
index 3f60fcc49..67abcef00 100644
--- a/perl-install/bootlook.pm
+++ b/perl-install/bootlook.pm
@@ -338,7 +338,7 @@ sub lilo_choice
$::expert=1;
ask:
local $::isEmbedded = 0;
- any::setupBootloader($in, $bootloader, $all_hds->{hds}, $fstab, $ENV{SECURE_LEVEL}) or return;
+ any::setupBootloader($in, $bootloader, $all_hds, $fstab, $ENV{SECURE_LEVEL}) or return;
eval { bootloader::install('', $bootloader, $fstab, $all_hds->{hds}) };
if ($@) {
$in->ask_warn('',
hunk'>@@ -59,11 +59,13 @@ void finish_frontend(void)
void verror_message(char *msg, va_list ap)
{
+ probe_that_type(USB_CONTROLLERS, BUS_USB); // we'd need the keyboard for interactions so...
newtWinMessagev("Error", "Ok", msg, ap);
}
void vinfo_message(char *msg, va_list ap)
{
+ probe_that_type(USB_CONTROLLERS, BUS_USB); // we'd need the keyboard for interactions so...
newtWinMessagev("Notice", "Ok", msg, ap);
}
diff --git a/mdk-stage1/stdio-frontend.c b/mdk-stage1/stdio-frontend.c
index 0a0b0090e..36ad7ce99 100644
--- a/mdk-stage1/stdio-frontend.c
+++ b/mdk-stage1/stdio-frontend.c
@@ -176,11 +176,13 @@ static void blocking_msg(char *type, char *fmt, va_list ap)
void verror_message(char *msg, va_list ap)
{
+ probe_that_type(USB_CONTROLLERS, BUS_USB); // we'd need the keyboard for interactions so...
blocking_msg("> Error! ", msg, ap);
}
void vinfo_message(char *msg, va_list ap)
{
+ probe_that_type(USB_CONTROLLERS, BUS_USB); // we'd need the keyboard for interactions so...
blocking_msg("> Notice: ", msg, ap);
}