summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/stdio-frontend.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2004-02-17 13:57:31 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2004-02-17 13:57:31 +0000
commit77565d50479b2f99ac6822409cc0e8b90e1c1a01 (patch)
tree796fad535d5b0df5abb1434545e0fc397fcf883b /mdk-stage1/stdio-frontend.c
parentc239347fcb639ee3154c318fc8dce02ed3fbe22c (diff)
downloaddrakx-backup-do-not-use-77565d50479b2f99ac6822409cc0e8b90e1c1a01.tar
drakx-backup-do-not-use-77565d50479b2f99ac6822409cc0e8b90e1c1a01.tar.gz
drakx-backup-do-not-use-77565d50479b2f99ac6822409cc0e8b90e1c1a01.tar.bz2
drakx-backup-do-not-use-77565d50479b2f99ac6822409cc0e8b90e1c1a01.tar.xz
drakx-backup-do-not-use-77565d50479b2f99ac6822409cc0e8b90e1c1a01.zip
when available, always load usb interface, as soon as possible, should help usb mouse detection in stage2 which otherwise timeouts
Diffstat (limited to 'mdk-stage1/stdio-frontend.c')
-rw-r--r--mdk-stage1/stdio-frontend.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/mdk-stage1/stdio-frontend.c b/mdk-stage1/stdio-frontend.c
index 45d9177a2..a5a2fb576 100644
--- a/mdk-stage1/stdio-frontend.c
+++ b/mdk-stage1/stdio-frontend.c
@@ -176,13 +176,11 @@ 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);
}
@@ -254,8 +252,6 @@ enum return_type ask_from_list_comments(char *msg, char ** elems, char ** elems_
int i = 1;
int j = 0;
- probe_that_type(USB_CONTROLLERS, BUS_USB); // we'd need the keyboard for interactions so...
-
while (elems && *elems) {
elems++;
i++;
@@ -310,7 +306,6 @@ enum return_type ask_from_list_comments(char *msg, char ** elems, char ** elems_
enum return_type ask_from_list(char *msg, char ** elems, char ** choice)
{
- probe_that_type(USB_CONTROLLERS, BUS_USB); // we'd need the keyboard for interactions so...
return ask_from_list_comments(msg, elems, NULL, choice);
}
@@ -319,8 +314,6 @@ enum return_type ask_yes_no(char *msg)
{
int j;
- probe_that_type(USB_CONTROLLERS, BUS_USB); // we'd need the keyboard for interactions so...
-
printf("> %s\n[0] Yes [1] No [2] Back\n? ", msg);
j = get_int_response();
@@ -338,8 +331,6 @@ enum return_type ask_from_entries(char *msg, char ** questions, char *** answers
int j, i = 0;
char ** already_answers = NULL;
- probe_that_type(USB_CONTROLLERS, BUS_USB); // we'd need the keyboard for interactions so...
-
printf("> %s\n", msg);
while (questions && *questions) {