* unresolved symbol on target ... while insmod
@ 2006-06-29 5:00 srideep.devireddy
0 siblings, 0 replies; 4+ messages in thread
From: srideep.devireddy @ 2006-06-29 5:00 UTC (permalink / raw)
To: linuxppc-embedded
[-- Attachment #1: Type: text/plain, Size: 1974 bytes --]
Hello All ,
I compiled a driver module using cross compiler for MPC8247 , now when
I try to insert the module in to the target I give me an error like
root@10.0.0.2:/home# insmod linux-kernel-bde.o
Using linux-kernel-bde.o
insmod: unresolved symbol devfs_register
insmod: unresolved symbol vsprintf
insmod: unresolved symbol kmalloc
insmod: unresolved symbol create_proc_entry
insmod: unresolved symbol __get_free_pages
insmod: unresolved symbol __save_flags_ptr
insmod: unresolved symbol ioremap
insmod: unresolved symbol free_irq
insmod: unresolved symbol high_memory
insmod: unresolved symbol devfs_unregister
insmod: unresolved symbol iounmap
insmod: unresolved symbol free_pages
insmod: unresolved symbol kfree
insmod: unresolved symbol strlen
insmod: unresolved symbol remove_proc_entry
insmod: unresolved symbol request_irq
insmod: unresolved symbol mem_map
insmod: unresolved symbol simple_strtoul
insmod: unresolved symbol sprintf
insmod: unresolved symbol __restore_flags
insmod: unresolved symbol printk
insmod: unresolved symbol __cli
Can any one show me some pointers what is this error all about . And how
to over come this . Thanks in advance
Best Regards
Srideep
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments.
WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.
www.wipro.com
[-- Attachment #2: Type: text/html, Size: 7813 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* unresolved symbol on target ... while insmod
@ 2006-10-13 6:49 kwkang
2006-10-13 9:41 ` Kyungwan Kang
2006-10-13 15:28 ` Kumar Gala
0 siblings, 2 replies; 4+ messages in thread
From: kwkang @ 2006-10-13 6:49 UTC (permalink / raw)
To: linuxppc-embedded
[-- Attachment #1: Type: text/plain, Size: 518 bytes --]
Hi Srideep,
Can anyone show me how I can overcome below problem?
I have searched mailing list but I can not find any answer for that problem.
[test ~]#insmod linux-kernel-bde.o
Using linux-kernel-bde.o
Using linux-kernel-bde.o
insmod: Warning: kernel-module version mismatch
linux-kernel-bde.o was compiled for kernel version 2.4.20_dev
while this kernel is version 2.4.21-pre5
insmod: unresolved symbol devfs_register
insmod: unresolved symbol devfs_unregister
Thanks.
William.
[-- Attachment #2: Type: text/html, Size: 5638 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: unresolved symbol on target ... while insmod
2006-10-13 6:49 unresolved symbol on target ... while insmod kwkang
@ 2006-10-13 9:41 ` Kyungwan Kang
2006-10-13 15:28 ` Kumar Gala
1 sibling, 0 replies; 4+ messages in thread
From: Kyungwan Kang @ 2006-10-13 9:41 UTC (permalink / raw)
To: Linuxppc-embedded
[-- Attachment #1: Type: text/plain, Size: 849 bytes --]
I can find the option for /dev filesystem in 2.4.x kernel.
Thanks.
2006/10/13, kwkang <kwkang@pontusys.com>:
>
> Hi Srideep,
>
>
>
> Can anyone show me how I can overcome below problem?
>
> I have searched mailing list but I can not find any answer for that
> problem.
>
>
>
> [test ~]#insmod linux-kernel-bde.o
>
> Using linux-kernel-bde.o
>
> Using linux-kernel-bde.o
>
> insmod: Warning: kernel-module version mismatch
>
> linux-kernel-bde.o was compiled for kernel version 2.4.20_dev
>
> while this kernel is version 2.4.21-pre5
>
> insmod: unresolved symbol devfs_register
>
> insmod: unresolved symbol devfs_unregister
>
>
>
> Thanks.
>
> William.
>
> _______________________________________________
> Linuxppc-embedded mailing list
> Linuxppc-embedded@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-embedded
>
>
[-- Attachment #2: Type: text/html, Size: 3148 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: unresolved symbol on target ... while insmod
2006-10-13 6:49 unresolved symbol on target ... while insmod kwkang
2006-10-13 9:41 ` Kyungwan Kang
@ 2006-10-13 15:28 ` Kumar Gala
1 sibling, 0 replies; 4+ messages in thread
From: Kumar Gala @ 2006-10-13 15:28 UTC (permalink / raw)
To: kwkang; +Cc: linuxppc-embedded
On Oct 13, 2006, at 1:49 AM, kwkang wrote:
> Hi Srideep,
>
>
>
> Can anyone show me how I can overcome below problem?
>
> I have searched mailing list but I can not find any answer for that
> problem.
>
>
>
> [test ~]#insmod linux-kernel-bde.o
>
> Using linux-kernel-bde.o
>
> Using linux-kernel-bde.o
>
> insmod: Warning: kernel-module version mismatch
>
> linux-kernel-bde.o was compiled for kernel version 2.4.20_dev
>
> while this kernel is version 2.4.21-pre5
>
> insmod: unresolved symbol devfs_register
>
> insmod: unresolved symbol devfs_unregister
This most likely means you dont have devfs built into your kernel or
the module for devfs isn't loaded.
- k
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2006-10-13 15:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-13 6:49 unresolved symbol on target ... while insmod kwkang
2006-10-13 9:41 ` Kyungwan Kang
2006-10-13 15:28 ` Kumar Gala
-- strict thread matches above, loose matches on Subject: below --
2006-06-29 5:00 srideep.devireddy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).