diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2004-01-22 17:09:00 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2004-01-22 17:09:00 +0000 |
commit | 147317297c20ab596f239c8f3947ed3e2290282e (patch) | |
tree | 6e2a3d285addc44365d79ee305a8677bebabab7a /mdk-stage1/pcmcia_ | |
parent | ea1ae4d01e69b2bd24896315c88eb072c3874e1d (diff) | |
download | drakx-backup-do-not-use-147317297c20ab596f239c8f3947ed3e2290282e.tar drakx-backup-do-not-use-147317297c20ab596f239c8f3947ed3e2290282e.tar.gz drakx-backup-do-not-use-147317297c20ab596f239c8f3947ed3e2290282e.tar.bz2 drakx-backup-do-not-use-147317297c20ab596f239c8f3947ed3e2290282e.tar.xz drakx-backup-do-not-use-147317297c20ab596f239c8f3947ed3e2290282e.zip |
until we haven't loaded the usb interface and the keyboard usb driver, we can't allow asking for additional drivers floppy, so need another parameter to my_insmod to indicate in which situation we are
Diffstat (limited to 'mdk-stage1/pcmcia_')
-rw-r--r-- | mdk-stage1/pcmcia_/cardmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/pcmcia_/cardmgr.c b/mdk-stage1/pcmcia_/cardmgr.c index ea3ff127e..c989f17f3 100644 --- a/mdk-stage1/pcmcia_/cardmgr.c +++ b/mdk-stage1/pcmcia_/cardmgr.c @@ -786,7 +786,7 @@ static int load_config(void) static void install_module(char *mod, char *opts) { - my_insmod(mod, ANY_DRIVER_TYPE, opts); + my_insmod(mod, ANY_DRIVER_TYPE, opts, 1); //mdk-stage1// module_list_t *ml; //mdk-stage1// //mdk-stage1// for (ml = module_list; ml != NULL; ml = ml->next) |