From: Jaswinder S. <jas...@3d...> - 2001-05-12 04:03:12
|
Dear Kojima-san and others , I am getting an error : unresolved symbol __udivsi3_i4 . How to overcome this problem. Thank you , Best Regards, Jaswinder. -- These are my opinions not 3Di. |
From: Jaswinder S. <jas...@3d...> - 2001-05-12 06:14:56
|
hello all, I am getting almost same error as mentioned in (by yaegashi-san):- http://www.m17n.org/linux-sh/ml/linux-sh-ja/2000-09/msg00002.html and kojima-san gave the reply for it :- http://www.m17n.org/linux-sh/ml/linux-sh-ja/2000-09/msg00003.html Can somebody translate the reply from Kojima-san in English . Thank you, Best Regards, Jaswinder. ----- Original Message ----- From: "Jaswinder Singh" <jas...@3d...> To: <kk...@rr...>; <lin...@m1...>; <lin...@li...> Cc: "Jaswinder Singh" <jas...@3d...> Sent: Friday, May 11, 2001 9:04 PM Subject: [linux-sh:01651] unresolved symbol __udivsi3_i4 > Dear Kojima-san and others , > > I am getting an error : unresolved symbol __udivsi3_i4 . > > How to overcome this problem. > > Thank you , > > Best Regards, > > Jaswinder. > -- > These are my opinions not 3Di. > > |
From: Mitch D. <mj...@al...> - 2001-05-12 13:39:14
|
Jaswinder Singh wrote: > > hello all, > > I am getting almost same error as mentioned in (by yaegashi-san):- > > http://www.m17n.org/linux-sh/ml/linux-sh-ja/2000-09/msg00002.html > > and kojima-san gave the reply for it :- > > http://www.m17n.org/linux-sh/ml/linux-sh-ja/2000-09/msg00003.html > > Can somebody translate the reply from Kojima-san in English . I cannot, but you might like to try something like this patch: diff -X /usr/local/lib/dontdiff -x #*# -x *~ -x vmlinux.lds -u -r --new-file ker --- kernel-pre-ppi-3/arch/sh/kernel/sh_ksyms.c 2001/01/02 16:54:19 +++ kernel/drivers/arch/sh/kernel/sh_ksyms.c 2001/01/08 13:56:49 @@ -66,6 +78,8 @@ /* These symbols are generated by the compiler itself */ #ifdef __SH4__ +DECLARE_EXPORT(__udivsi3); +DECLARE_EXPORT(__sdivsi3); DECLARE_EXPORT(__movstr_i4_even); DECLARE_EXPORT(__movstr_i4_odd); DECLARE_EXPORT(__ashrdi3); sh_ksyms.c controls which symbols are exported. If a symbol is not exported, insmodding something which uses that symbol will fail. You'll need to tweak the symbols to match what you want. Regards, Mitch. -- mailto:mj...@al... mailto:md...@po... |
From: Jaswinder S. <jas...@3d...> - 2001-05-12 13:01:09
|
Dear Mitch, Thank you very much for your help and reply. Best Regards, Jaswinder. ----- Original Message ----- From: "Mitch Davis" <mj...@al...> To: "Jaswinder Singh" <jas...@3d...> Cc: <lin...@m1...>; <lin...@li...> Sent: Saturday, May 12, 2001 4:58 AM Subject: Re: [linuxsh-dev] Re: [linux-sh:01651] unresolved symbol __udivsi3_i4 > Jaswinder Singh wrote: > > > > hello all, > > > > I am getting almost same error as mentioned in (by yaegashi-san):- > > > > http://www.m17n.org/linux-sh/ml/linux-sh-ja/2000-09/msg00002.html > > > > and kojima-san gave the reply for it :- > > > > http://www.m17n.org/linux-sh/ml/linux-sh-ja/2000-09/msg00003.html > > > > Can somebody translate the reply from Kojima-san in English . > > I cannot, but you might like to try something like > this patch: > > diff -X /usr/local/lib/dontdiff -x #*# -x *~ -x vmlinux.lds -u -r --new-file ker > --- kernel-pre-ppi-3/arch/sh/kernel/sh_ksyms.c 2001/01/02 16:54:19 > +++ kernel/drivers/arch/sh/kernel/sh_ksyms.c 2001/01/08 13:56:49 > @@ -66,6 +78,8 @@ > /* These symbols are generated by the compiler itself */ > #ifdef __SH4__ > > +DECLARE_EXPORT(__udivsi3); > +DECLARE_EXPORT(__sdivsi3); > DECLARE_EXPORT(__movstr_i4_even); > DECLARE_EXPORT(__movstr_i4_odd); > DECLARE_EXPORT(__ashrdi3); > > sh_ksyms.c controls which symbols are exported. > If a symbol is not exported, insmodding something > which uses that symbol will fail. > > You'll need to tweak the symbols to match what you want. > > Regards, > > Mitch. > -- > mailto:mj...@al... > mailto:md...@po... > |
From: Mitch D. <mj...@al...> - 2001-05-12 23:14:10
|
Jaswinder Singh wrote: > > Dear Mitch, > > Thank you very much for your help and reply. Don't thank me unless it helped :-) Did it? Regards, Mitch. -- mailto:mj...@al... mailto:md...@po... |
From: Jaswinder S. <jas...@3d...> - 2001-05-13 22:43:06
|
Dear Mitch, > > > > Thank you very much for your help and reply. > > Don't thank me unless it helped :-) Did it? > I am sorry , i am getting some hardware problem in my SH4 board regarding flash memory . I am bringing some other boards and i will let you know as soon as i am able to test on it. Thank you, Best Regards, Jaswinder. -- These are my opinions not 3Di. |