diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-03-15 17:04:03 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-03-15 17:04:03 +0000 |
commit | 38ee09c12951a64a51d5175714fcfd3fa11a2d18 (patch) | |
tree | 91d852951de9687456c18e8e309388bbc9291f16 /mdk-stage1 | |
parent | cf5f4d02bc5380afa126c75c724517aff6356ea7 (diff) | |
download | drakx-38ee09c12951a64a51d5175714fcfd3fa11a2d18.tar drakx-38ee09c12951a64a51d5175714fcfd3fa11a2d18.tar.gz drakx-38ee09c12951a64a51d5175714fcfd3fa11a2d18.tar.bz2 drakx-38ee09c12951a64a51d5175714fcfd3fa11a2d18.tar.xz drakx-38ee09c12951a64a51d5175714fcfd3fa11a2d18.zip |
fix pcmcia modules loading
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/stage1.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mdk-stage1/stage1.c b/mdk-stage1/stage1.c index d6364c6a0..b0c6979c5 100644 --- a/mdk-stage1/stage1.c +++ b/mdk-stage1/stage1.c @@ -231,7 +231,10 @@ static void handle_pcmcia(void) } my_insmod("pcmcia_core", ANY_DRIVER_TYPE, NULL, 0); my_insmod(pcmcia_adapter, ANY_DRIVER_TYPE, NULL, 0); + /* ds is an alias for pcmcia in recent 2.6 kernels + but we don't have modules.alias in install, so try to load both */ my_insmod("ds", ANY_DRIVER_TYPE, NULL, 0); + my_insmod("pcmcia", ANY_DRIVER_TYPE, NULL, 0); /* call to cardmgr takes time, let's use the wait message */ wait_message("Enabling PCMCIA extension cards..."); |