From 3cb5573248416683259eef7eb99981ec68c23bc1 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Wed, 9 Mar 2005 14:51:40 +0000 Subject: probe usb devices before trying to use third party modules --- mdk-stage1/stage1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mdk-stage1/stage1.c b/mdk-stage1/stage1.c index 2aa584cbf..0a58dc0b7 100644 --- a/mdk-stage1/stage1.c +++ b/mdk-stage1/stage1.c @@ -632,6 +632,9 @@ int main(int argc __attribute__ ((unused)), char **argv __attribute__ ((unused)) init_modules_insmoding(); init_frontend("Welcome to " DISTRIB_DESCR ", " __DATE__ " " __TIME__); + /* load usb interface as soon as possible, helps usb mouse detection in stage2 */ + probe_that_type(USB_CONTROLLERS, BUS_USB); + if (IS_EXPERT) expert_third_party_modules(); @@ -643,9 +646,6 @@ int main(int argc __attribute__ ((unused)), char **argv __attribute__ ((unused)) handle_pcmcia(); #endif - /* load usb interface as soon as possible, helps usb mouse detection in stage2 */ - probe_that_type(USB_CONTROLLERS, BUS_USB); - if (IS_CHANGEDISK) stg1_info_message("You are starting the installation with an alternate booting method. " "Please change your disk, and insert the Installation disk."); -- cgit v1.2.1