From 34be445681c8dc42b73e95b80464ebad33503e8e Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Wed, 21 Nov 2001 14:54:53 +0000 Subject: migrate pcmcia in drakx to use in-kernel version (only for 2.4, though --> pcmcia in 2.2 no longer supported) --- make_boot_img | 2 +- perl-install/Makefile | 2 +- perl-install/c/Makefile.PL | 6 +++--- perl-install/install_steps_interactive.pm | 4 +++- perl-install/modules.pm | 8 +++++++- update_kernel | 12 +----------- 6 files changed, 16 insertions(+), 18 deletions(-) diff --git a/make_boot_img b/make_boot_img index 1deb23139..77be6aeda 100755 --- a/make_boot_img +++ b/make_boot_img @@ -49,7 +49,7 @@ $install = $ {{ mkdir "images"; chomp($main = `cat all.kernels/.main`); -if ($img =~ /blank|other/) { +if ($img =~ /blank|other|pcmcia/) { @kernels = $main; } else { @kernels = map { m|all.kernels/(.*)| } glob('all.kernels/*'); diff --git a/perl-install/Makefile b/perl-install/Makefile index 51acbc583..4a7c0daf1 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -100,7 +100,7 @@ ifeq (sparc,$(ARCH)) ln -s /usr/X11R6/lib/X11/xkb/xkbcomp $(DEST)/usr/bin/xkbcomp endif ifeq (i386,$(ARCH)) - install -s ../all.kernels/*/cardmgr/cardmgr-* $(DEST)/usr/bin + install -s /sbin/cardmgr $(DEST)/usr/bin endif for i in `cat /tmp/list`; do \ diff --git a/perl-install/c/Makefile.PL b/perl-install/c/Makefile.PL index e4d13859a..206ab4ef1 100644 --- a/perl-install/c/Makefile.PL +++ b/perl-install/c/Makefile.PL @@ -7,15 +7,15 @@ my $libs = '-lldetect -lext2fs'; $libs .= ' -L/usr/X11R6/lib -lX11 -lgdk -lXxf86misc' if $ENV{C_DRAKX}; $libs .= ' -lrpm -lrpmdb -lrpmio -lz' if $ENV{C_RPM}; -my $pcmcia_dir = $ENV{C_DRAKX} && $Config{archname} =~ /i.86/ ? '../../mdk-stage1/pcmcia' : ''; +my $pcmcia_dir = $ENV{C_DRAKX} && $Config{archname} =~ /i.86/ ? '../../mdk-stage1/pcmcia_' : ''; -symlink "$pcmcia_dir/pcmcia_probe.c", "pcmcia_probe.c" if $pcmcia_dir; +symlink "$pcmcia_dir/probe.c", "probe.c" if $pcmcia_dir; WriteMakefile( 'NAME' => 'stuff', 'OPTIMIZE' => '-Os', 'MAKEFILE' => 'Makefile_c', - 'OBJECT' => "stuff.o smp.o sbus.o silo.o" . ($pcmcia_dir && " pcmcia_probe.o"), + 'OBJECT' => "stuff.o smp.o sbus.o silo.o" . ($pcmcia_dir && " probe.o"), 'VERSION_FROM' => 'stuff.pm', # finds $VERSION 'LIBS' => [$libs], # e.g., '-lm' 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 5ad33d267..e34187bad 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -289,7 +289,9 @@ sub setupSCSI { if (!$::noauto && arch() =~ /i.86/) { if ($o->{pcmcia} ||= !$::testing && c::pcmcia_probe()) { my $w = $o->wait_message(_("PCMCIA"), _("Configuring PCMCIA cards...")); - modules::configure_pcmcia($o->{pcmcia}); + my $results = modules::configure_pcmcia($o->{pcmcia}); + $w = undef; + $results and $o->ask_warn('', $results); } } { diff --git a/perl-install/modules.pm b/perl-install/modules.pm index cec1fa16f..c48cf87ba 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -807,6 +807,12 @@ sub configure_pcmcia { return if $running; $running = 1; + if (c::kernel_version() =~ /^2\.2/) { + my $msg = _("PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."); + log::l($msg); + return $msg; + } + log::l("i try to configure pcmcia services"); symlink "/tmp/stage2/$_", $_ foreach "/etc/pcmcia"; @@ -818,7 +824,7 @@ sub configure_pcmcia { }; #- run cardmgr in foreground while it is configuring the card. - run_program::run("cardmgr-" . c::kernel_version(), "-f", "-m" ,"/modules"); + run_program::run("cardmgr", "-f", "-m" ,"/modules"); sleep(3); #- make sure to be aware of loaded module by cardmgr. diff --git a/update_kernel b/update_kernel index 7b89137f5..74c86c322 100755 --- a/update_kernel +++ b/update_kernel @@ -82,7 +82,7 @@ NOT_USEFULL_IN_STAGE1="nls_*.o parport_probe.o raid*.o serial.o smbfs.o usb-*.o" GENERIC_MODULES="isa-pnp.o floppy.o" -PCMCIA_COREMODULES="pcmcia_core.o tcic.o ds.o i82365.o" +PCMCIA_COREMODULES="pcmcia_core.o tcic.o ds.o i82365.o yenta_socket.o" if [ "$ARCH" == "i386" ]; then @@ -104,16 +104,6 @@ GIBASEDIR=`pwd` rm -rf all.modules ; mkdir all.modules for i in $ALL_KERNELS/*; do kern=`basename $i` - [ -e $i/cardmgr ] && ( - cd $i/cardmgr - touch main.c - nm cardmgr.o | grep -q cardmgr_main && echo "int main(int argc, char **argv) { cardmgr_main(argc, argv); }" > main.c - gcc -o cardmgr-$kern *.o main.c - ) - [ -e $i/sbin/cardmgr ] && ( - mkdir $i/cardmgr - cp -f $i/sbin/cardmgr $i/cardmgr/cardmgr-$kern - ) ( mkdir all.modules/$kern cd all.modules/$kern -- cgit v1.2.1