public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* test13-preX: DRM (tdfx.o) unresolved symbols fixed?
@ 2000-12-27  1:54 Dieter Nützel
  2000-12-27 10:07 ` Nils Philippsen
  0 siblings, 1 reply; 5+ messages in thread
From: Dieter Nützel @ 2000-12-27  1:54 UTC (permalink / raw)
  To: Linux Kernel List; +Cc: Rik Faith, Dri-devel

Hello to all of you,

I got this since test13-pre1 (pre4, now):

SunWave1>depmod -e
depmod: *** Unresolved symbols in 
/lib/modules/2.4.0-test13-pre4/kernel/drivers/char/drm/tdfx.o
depmod:         remap_page_range
depmod:         _mmx_memcpy
depmod:         __wake_up
depmod:         mtrr_add
depmod:         __generic_copy_from_user
depmod:         schedule
depmod:         kmalloc
depmod:         si_meminfo
depmod:         create_proc_entry
depmod:         inter_module_put
depmod:         __get_free_pages
depmod:         boot_cpu_data
depmod:         inter_module_get
depmod:         remove_wait_queue
depmod:         high_memory
depmod:         iounmap
depmod:         free_pages
depmod:         __ioremap
depmod:         del_timer
depmod:         interruptible_sleep_on
depmod:         __pollwait
depmod:         kfree
depmod:         remove_proc_entry
depmod:         pci_find_slot
depmod:         kill_fasync
depmod:         fasync_helper
depmod:         add_wait_queue
depmod:         do_mmap_pgoff
depmod:         mem_map
depmod:         sprintf
depmod:         jiffies
depmod:         printk
depmod:         add_timer
depmod:         irq_stat
depmod:         __generic_copy_to_user

Something missing in the 'new' drm/Makefile?

Thanks,
	Dieter
-- 
Dieter Nützel
Graduate Student, Computer Science

University of Hamburg
Department of Computer Science
Cognitive Systems Group
Vogt-Kölln-Straße 30
D-22527 Hamburg, Germany

email: nuetzel@kogs.informatik.uni-hamburg.de
@home: Dieter.Nuetzel@hamburg.de
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: test13-preX: DRM (tdfx.o) unresolved symbols fixed?
  2000-12-27  1:54 test13-preX: DRM (tdfx.o) unresolved symbols fixed? Dieter Nützel
@ 2000-12-27 10:07 ` Nils Philippsen
  2000-12-27 23:50   ` Dieter Nützel
  0 siblings, 1 reply; 5+ messages in thread
From: Nils Philippsen @ 2000-12-27 10:07 UTC (permalink / raw)
  To: Dieter Nützel; +Cc: Linux Kernel List, Rik Faith, Dri-devel

Hi all,

On Wed, 27 Dec 2000, Dieter [iso-8859-1] Nützel wrote:

> I got this since test13-pre1 (pre4, now):
>
> SunWave1>depmod -e
> depmod: *** Unresolved symbols in
> /lib/modules/2.4.0-test13-pre4/kernel/drivers/char/drm/tdfx.o

[snipped]

> Something missing in the 'new' drm/Makefile?

>From the test13-pre4 patch, the only difference I can see is that shared code
is now in drmlib.a instead of the object files being linked individually for
each drm module.

If I do `nm tdfx.o|grep printk`, with test12 I get only this:

         U printk_R1b7d4074

with test13-pre4 on my home machine, I get the mangled symbol name plus a
non-mangled one, both unresolved, maybe that causes problems.

Nils
-- 
 Nils Philippsen / Berliner Straße 39 / D-71229 Leonberg // +49.7152.209647
nils@wombat.dialup.fht-esslingen.de / nils@fht-esslingen.de / nils@redhat.de
   The use of COBOL cripples the mind; its teaching should, therefore, be
   regarded as a criminal offence.                  -- Edsger W. Dijkstra


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: test13-preX: DRM (tdfx.o) unresolved symbols fixed?
  2000-12-27 10:07 ` Nils Philippsen
@ 2000-12-27 23:50   ` Dieter Nützel
  2000-12-28 16:40     ` Tony Hoyle
  0 siblings, 1 reply; 5+ messages in thread
From: Dieter Nützel @ 2000-12-27 23:50 UTC (permalink / raw)
  To: Nils Philippsen; +Cc: Linux Kernel List, Rik Faith, Dri-devel

Am Mittwoch, 27. Dezember 2000 11:07 schrieb Nils Philippsen:
> Hi all,
>
> On Wed, 27 Dec 2000, Dieter [iso-8859-1] Nützel wrote:
> > I got this since test13-pre1 (pre4, now):
> >
> > SunWave1>depmod -e
> > depmod: *** Unresolved symbols in
> > /lib/modules/2.4.0-test13-pre4/kernel/drivers/char/drm/tdfx.o
>
> [snipped]
>
> > Something missing in the 'new' drm/Makefile?
>
> From the test13-pre4 patch, the only difference I can see is that shared
> code is now in drmlib.a instead of the object files being linked
> individually for each drm module.

Yep, I saw this, too.

> If I do `nm tdfx.o|grep printk`, with test12 I get only this:
>
>          U printk_R1b7d4074

dito
SunWave1>cd ../../../../../2.4.0-test12-pre7/kernel/drivers/char/drm/
SunWave1>nm tdfx.o | grep printk
         U printk_R1b7d4074

> with test13-pre4 on my home machine, I get the mangled symbol name plus a
> non-mangled one, both unresolved, maybe that causes problems.

SunWave1>cd ../../../../../2.4.0-test13-pre4/kernel/drivers/char/drm/
SunWave1>nm tdfx.o | grep printk
         U printk
         U printk_R1b7d4074

But the strange thing is this:

SunWave1>depmod -e
depmod: *** Unresolved symbols in 
/lib/modules/2.4.0-test13-pre4/kernel/drivers/char/drm/tdfx.o
depmod:         remap_page_range
depmod:         _mmx_memcpy
depmod:         __wake_up
depmod:         mtrr_add
depmod:         __generic_copy_from_user
depmod:         schedule
[snip]

-Dieter
-- 
Dieter Nützel
Graduate Student, Computer Science

University of Hamburg
Department of Computer Science
Cognitive Systems Group
Vogt-Kölln-Straße 30
D-22527 Hamburg, Germany

email: nuetzel@kogs.informatik.uni-hamburg.de
@home: Dieter.Nuetzel@hamburg.de
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: test13-preX: DRM (tdfx.o) unresolved symbols fixed?
  2000-12-27 23:50   ` Dieter Nützel
@ 2000-12-28 16:40     ` Tony Hoyle
  2000-12-28 23:00       ` Dieter Nützel
  0 siblings, 1 reply; 5+ messages in thread
From: Tony Hoyle @ 2000-12-28 16:40 UTC (permalink / raw)
  To: Dieter Nützel
  Cc: Nils Philippsen, Linux Kernel List, Rik Faith, Dri-devel

Dieter Nützel wrote:
> 
> Am Mittwoch, 27. Dezember 2000 11:07 schrieb Nils Philippsen:
> > Hi all,
> >
> > On Wed, 27 Dec 2000, Dieter [iso-8859-1] Nützel wrote:
> > > I got this since test13-pre1 (pre4, now):
> > >
> > > SunWave1>depmod -e
> > > depmod: *** Unresolved symbols in
> > > /lib/modules/2.4.0-test13-pre4/kernel/drivers/char/drm/tdfx.o
> >
> > [snipped]
> >
> > > Something missing in the 'new' drm/Makefile?
> >
This is a temporary fix:

--- drmP.old	Thu Dec 28 16:27:34 2000
+++ drmP.h	Sat Dec 23 13:57:08 2000
@@ -40,6 +40,7 @@
 #include <asm/current.h>
 #endif /* __alpha__ */
 #include <linux/config.h>
+#include <linux/modversions.h>
 #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/miscdevice.h>

Tony

-- 
Can't think of a decent signature...

tmh@magenta-netlogic.com		http://www.nothing-on.tv
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: test13-preX: DRM (tdfx.o) unresolved symbols fixed?
  2000-12-28 16:40     ` Tony Hoyle
@ 2000-12-28 23:00       ` Dieter Nützel
  0 siblings, 0 replies; 5+ messages in thread
From: Dieter Nützel @ 2000-12-28 23:00 UTC (permalink / raw)
  To: Tony Hoyle; +Cc: Nils Philippsen, Linux Kernel List, Rik Faith, Dri-devel

Am Donnerstag, 28. Dezember 2000 17:40 schrieb Tony Hoyle:
> Dieter Nützel wrote:
> > Am Mittwoch, 27. Dezember 2000 11:07 schrieb Nils Philippsen:
> > > Hi all,
> > >
> > > On Wed, 27 Dec 2000, Dieter [iso-8859-1] Nützel wrote:
> > > > I got this since test13-pre1 (pre4, now):
> > > >
> > > > SunWave1>depmod -e
> > > > depmod: *** Unresolved symbols in
> > > > /lib/modules/2.4.0-test13-pre4/kernel/drivers/char/drm/tdfx.o
> > >
> > > [snipped]
> > >
> > > > Something missing in the 'new' drm/Makefile?
>
> This is a temporary fix:
>
> --- drmP.old	Thu Dec 28 16:27:34 2000
> +++ drmP.h	Sat Dec 23 13:57:08 2000
> @@ -40,6 +40,7 @@
>  #include <asm/current.h>
>  #endif /* __alpha__ */
>  #include <linux/config.h>
> +#include <linux/modversions.h>
>  #include <linux/module.h>
>  #include <linux/kernel.h>
>  #include <linux/miscdevice.h>

If I compile agpgart and tdfx directly into the kernel, it works for me, too.

Thanks!
	Dieter
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2000-12-28 23:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-12-27  1:54 test13-preX: DRM (tdfx.o) unresolved symbols fixed? Dieter Nützel
2000-12-27 10:07 ` Nils Philippsen
2000-12-27 23:50   ` Dieter Nützel
2000-12-28 16:40     ` Tony Hoyle
2000-12-28 23:00       ` Dieter Nützel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox