>  From:        Jonathan Hudson <[EMAIL PROTECTED]>
>  X-Newsreader: knews 1.0b.1
>  x-no-productlinks: yes
>  X-Newsgroups: fa.linux.kernel
>  Content-Type: text/plain; charset=iso-8859-1
>  Date:        Sat, 07 Apr 2001 21:01:56 GMT
>  Bytes:       235
>  Sender:      [EMAIL PROTECTED]
>  Precedence: bulk
>  X-Mailing-List:      [EMAIL PROTECTED]
>  
>  depmod: *** Unresolved symbols in 
>          /lib/modules/2.4.4-pre1/kernel/drivers/ide/ide-cd.o
>  depmod:      strstr
>  
>  depmod: *** Unresolved symbols in 
>          /lib/modules/2.4.4-pre1/kernel/drivers/parport/parport.o
>  depmod:      strstr
>  -
>  To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
>  the body of a message to [EMAIL PROTECTED]
>  More majordomo info at  http://vger.kernel.org/majordomo-info.html
>  Please read the FAQ at  http://www.tux.org/lkml/
>  
>  

I think strstr (apparently a new function) got left out of 
i386_ksyms.c:
The following appears to have fixed it for me:
--- arch/i386/kernel/i386_ksyms.c.~1~   Mon Apr  9 10:54:58 2001
+++ arch/i386/kernel/i386_ksyms.c       Mon Apr  9 12:46:45 2001
@@ -97,6 +97,7 @@
 EXPORT_SYMBOL_NOVERS(__put_user_2);
 EXPORT_SYMBOL_NOVERS(__put_user_4);
 
+EXPORT_SYMBOL(strstr);
 EXPORT_SYMBOL(strtok);
 EXPORT_SYMBOL(strpbrk);
 EXPORT_SYMBOL(simple_strtol);


-- todd --

**********************************************************************
This footnote confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.
**********************************************************************
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to