It was fixed in 8.2rc1 but it is back.
Here's the content of /etc/rc.d/rc.modules (I added #SEG FAULT# to the
line causing the segmentation fault):
#!/bin/sh
# (c) MandrakeSoft, Chmouel Boudjnah <[EMAIL PROTECTED]>
# $Id: rc.modules,v 1.1.1.1 2000/07/30 05:07:38 chmouel Exp $
# description: launch modules specified in /etc/modules inspired by a
# Debian idea.

[ -f /etc/modules ] || exit 0

# Loop over every line in /etc/modules.
(cat /etc/modules; echo) | while read module args
do
  case "$module" in
      \#*|"") continue ;;
  esac
  initlog -s "Loading module: $module"
  modprobe $module $args >/dev/null 2>&1  #SEG FAULT#
done

and of /etc/modules:
# /etc/modules: kernel modules to load at boot time.
#
# This file should contain the names of kernel modules that are
# to be loaded at boot time, one per line.  Comments begin with
# a `#', and everything on the line after them are ignored.

scsi_hostadapter

As you see nothing related to probeall my_scsi_adapter my_scsi_adapter

Luc

Le mar 19/03/2002 à 08:39, Frederic Crozat a écrit :
> On Tue, 19 Mar 2002 14:33:54 +0100, Luc Roseberry wrote:
> 
> > After upgrading from 8.2rc1 to 8.2 I have an error message at boot time.
> >  Line 17 of /etc/rc.d/rc.modules is causing a segmentation fault.
> 
> It has been fixed in final but since you upgrade, it didn't fixed the
> problem on your system.
> 
> There is probably the following lines
> probeall scsi_adapter my_scsi_adapter
> probeall my_scsi_adapter my_scsi_adapter
> 
> Remove the second line and modprobe will no longer core dump..
> 
> -- 
> Frédéric Crozat
> MandrakeSoft
> 
-- 
Luc Roseberry
Consultant Tivoli certifié / Certified Tivoli Consultant
Facilité Informatique Canada 


Reply via email to