I have build now the cvs version but it's alway the same probleme vmalloc is a option to the kernel ? if yes can you teel me where I find it ?
the kernel is 2.4.18 with a patch for the board (based on a MPC8245) and the rthal5 pach for powerpc.
Please try this patch for rtcfg_ioctl.c. I think now it is a cross-compilation issue and that source file is simply lacking an additional include (which will resolve vmalloc to __vmalloc).
Let me know if it works.
Jan
Index: rtcfg/rtcfg_ioctl.c =================================================================== RCS file: /cvsroot/rtnet/rtnet/rtcfg/rtcfg_ioctl.c,v retrieving revision 1.2 diff -u -r1.2 rtcfg_ioctl.c --- rtcfg/rtcfg_ioctl.c 15 Feb 2004 17:56:21 -0000 1.2 +++ rtcfg/rtcfg_ioctl.c 12 Mar 2004 15:35:15 -0000 @@ -24,6 +24,7 @@ #include <asm/uaccess.h> #include <linux/file.h> +#include <linux/vmalloc.h> #include <rtcfg.h> #include <rtnet_rtpc.h>

