Bug 14742 - IPX modules not loaded
Summary: IPX modules not loaded
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: initscripts
Version: 6.2
Hardware: i386
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Bill Nottingham
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2000-07-27 18:34 UTC by Yan Fitterer
Modified: 2014-03-17 02:15 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2000-07-27 18:34:02 UTC
Embargoed:


Attachments (Terms of Use)

Description Yan Fitterer 2000-07-27 18:34:01 UTC
When modules ipx and ncpfs are not compiled in the kernel, they need
to be loaded during the init scripts.

The network init script (/etc/rc.d/init.d/network) is attempting to do
things with ipx, and fails due to the modules not being loaded.

For info, here are the lines I've added in my /etc/rc.d/rc.sysinit - I'm
sure this is the "wrong" way of doing it, but it does the job for me... ;)

# Load Netware modules if required
alias=`egrep -s "^alias[[:space:]]+nw_net[[:space:]]+" /etc/conf.modules |
awk '{print $3}'`
if [ -n $alias -a $alias != "off" ] ; then
   action "Loading $alias module" modprobe $alias
fi
alias=`egrep -s "^alias[[:space:]]+nw_fs[[:space:]]+" /etc/conf.modules |
awk '{print $3}'`
if [ -n $alias -a $alias != "off" ] ; then
   action "Loading $alias module" modprobe $alias
fi

Of course I have added the following two lines to /etc/conf.modules:
alias nw_net ipx
alias nw_fs ncpfs

Hope I haven't made a fool of myself... :(

Comment 1 Bill Nottingham 2000-07-27 19:05:01 UTC
You need to just add:

alias net-pf-4 ipx

to /etc/conf.modules and it will get loaded automatically.

This is fixed in the modutils currently in rawhide.


Note You need to log in before you can comment on or make changes to this bug.