From 38ee09c12951a64a51d5175714fcfd3fa11a2d18 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Tue, 15 Mar 2005 17:04:03 +0000 Subject: fix pcmcia modules loading --- mdk-stage1/stage1.c | 3 +++ perl-install/install_any.pm | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) 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..."); diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 6facb451b..b045cda5c 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -1792,7 +1792,9 @@ sub configure_pcmcia { symlink "/tmp/stage2/$_", $_ foreach "/etc/pcmcia"; - eval { modules::load('pcmcia_core', $pcic, 'ds') }; + #- 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 + eval { modules::load('pcmcia', $pcic, 'ds', 'pcmcia') }; #- run cardmgr in foreground while it is configuring the card. run_program::run("cardmgr", "-f", "-m", "/modules"); -- cgit v1.2.1