|
From: Rob L. <ro...@la...> - 2005-03-19 00:45:02
|
On Thursday 17 March 2005 10:18 pm, Ian McDonald wrote: > Hi there, > > I've been watching the discussion around 2.6.11 and reading the > archives and I can't find the information with any clarity that I > need. My problem is that I can't get UML to compile. I can on 2.4.27 > (with the standard patches) and with 2.6.10 also. > > My environment is Debian Woody with 2.4.27 kernel. My gcc version is > 2.95.4. I am using default options when I do 'make menu_config > ARCH=um' > > Here is the error that I am experiencing once I do 'make linux ARCH=um': > arch/um/kernel/sys_call_table.c:277: duplicate array index in initializer > arch/um/kernel/sys_call_table.c:277: (near initialization for > `sys_call_table') arch/um/kernel/sys_call_table.c:277: duplicate array > index in initializer arch/um/kernel/sys_call_table.c:277: (near > initialization for `sys_call_table') > > The code at line 277 is: > ARCH_SYSCALLS > [ LAST_SYSCALL + 1 ... NR_syscalls ] = > (syscall_handler_t *) sys_ni_syscall ARCH_SYSCALLS is defined in arch/um/include/sysdep-i386/syscalls.h by the way... In case you wanted to try to find which syscall was going "boing" for you... grep is your friend. :) Rob |