On Sun, 2001-12-30 at 11:33, Leandro Noferini wrote: > > >> always about this kerenl version: everything is working but > >> dmasound_pmac like module: > >> > >> clementino:/usr/src/linux# modprobe dmasound_pmac > >> > /lib/modules/2.4.17-ben0/kernel/drivers/sound/dmasound/dmasound_pmac.o: > unresolved symbol pmac_xpram_read > >> > /lib/modules/2.4.17-ben0/kernel/drivers/sound/dmasound/dmasound_pmac.o: > insmod /lib/modules/2.4.17-ben0/kernel/drivers/sound/dmasound/dmasound_pmac.o > failed > >> > /lib/modules/2.4.17-ben0/kernel/drivers/sound/dmasound/dmasound_pmac.o: > insmod dmasound_pmac failed > > MD> You need to enable CONFIG_NVRAM. It's better to build it into the > kernel > MD> instead of as a module. > > I have this build into the kernel....
>From arch/ppc/kernel/ppc_ksyms.c: #ifdef CONFIG_NVRAM EXPORT_SYMBOL(nvram_read_byte); EXPORT_SYMBOL(nvram_write_byte); EXPORT_SYMBOL(pmac_xpram_read); EXPORT_SYMBOL(pmac_xpram_write); #endif /* CONFIG_NVRAM */ I last updated my tree a few days ago, but I don't expect any changes there. Double check that you're running the right kernel. -- Earthling Michel D�nzer (MrCooper)/ Debian GNU/Linux (powerpc) developer XFree86 and DRI project member / CS student, Free Software enthusiast

