diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-03-09 14:51:40 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-03-09 14:51:40 +0000 |
commit | 3cb5573248416683259eef7eb99981ec68c23bc1 (patch) | |
tree | 1e3922e6b8bb7ae69a5d1012acaa95e10e51642f /mdk-stage1 | |
parent | 38a2c24e6e576edb089ae74e48529015260e4dd8 (diff) | |
download | drakx-3cb5573248416683259eef7eb99981ec68c23bc1.tar drakx-3cb5573248416683259eef7eb99981ec68c23bc1.tar.gz drakx-3cb5573248416683259eef7eb99981ec68c23bc1.tar.bz2 drakx-3cb5573248416683259eef7eb99981ec68c23bc1.tar.xz drakx-3cb5573248416683259eef7eb99981ec68c23bc1.zip |
probe usb devices before trying to use third party modules
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/stage1.c | 6 |
1 files 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."); |