<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/1.1.8">
</HEAD>
<BODY>
I will give that a try too, every time I have attempted to recompile a kernel, it has failed. Let us know if it works for you Robert, as I probably won't get to it for a while.<BR>
On Wed, 2003-07-09 at 12:02, Dave Andruczyk wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE><FONT COLOR="#737373" SIZE="3"><I>--- Robert Dege &lt;rdege@cse.Buffalo.EDU&gt; wrote:
&gt; 
&gt; I'm trying to compile the 2.4.21 kernel on RedHat 7.3.  When I get to the
&gt; part of make modules_install (or make install for that matter), it craps
&gt; out in the end when it executes the depmod.
&gt; 
&gt; Every module that I have selected in the config reports unresolved
&gt; symbols.  I even tried previous configs that compiled successfully in the
&gt; past, but the same problem exists.
&gt; 
&gt; Any suggestions??
&gt; 

I've seen that before,  it is caused by not starting from a presitine tree..

do this to resolve:
cd /usr/src/linux. (assume your new tree is in this path)
cp .config /tmp
make mrproper  &lt;-- very important,  makes the tree &quot;super clean&quot;
cp /tmp/.config .
make menuconfig  
        LEt it open, and then just save and exit. (needed to load the .config file and
setup a few things for the build)

make dep clean &amp;&amp; make bzImage &amp;&amp; make modules &amp;&amp; make modules_install &amp;&amp; cp
arch/i386/boot/bzImage /boot/vmlinuz-2.4.21

The &quot;&amp;&amp;&quot; are used instead of &quot;;&quot; so that if any part fails, the build will stop
there and not try and continue.

make your initial ramdisk if you use one (not everyone uses one) 
(mkinitrd -f /boot/initrd-2.4.21.img 2.4.21)
edit your grub.conf or lilo.conf (rerun lilo if you edit it) and add a section
for your new kernel and initrd (if used).  do NOT delete your old kernel entry
from lilo.conf or grub.conf in case this build fails to boot for whatever
reason (typo in config file, or missing hw support in the kernel)

Reboot on your new kernel..



=====
Dave J. Andruczyk

__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!</FONT>
<A HREF="http://sbc.yahoo.com"><FONT SIZE="3">http://sbc.yahoo.com</I></FONT></A></PRE>
</BLOCKQUOTE>
<PRE><TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%">
<TR>
<TD>
-- <BR>
Cyber Source &lt;<A HREF="mailto:peter@thecybersource.com">peter@thecybersource.com</A>&gt;
</TD>
</TR>
</TABLE>
</PRE>
</BODY>
</HTML>