60b2737de1
With Al Viro <viro@parcelfarce.linux.theplanet.co.uk> To make sure switcheroo() can execute when we remap all the executable image, we used a trick to make it use a local copy of errno... this trick does not work with NPTL glibc, only with LinuxThreads, so use another (simpler) one to make it work anyway. Hopefully, a lot improved thanks to merging with the version of Al Viro (which had his part of problems, though, i.e. removing a fix to another bug and not fixing the problem on i386). Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
22 lines
525 B
Makefile
22 lines
525 B
Makefile
obj-y = bitops.o bugs.o checksum.o delay.o fault.o ksyms.o ldt.o ptrace.o \
|
|
ptrace_user.o semaphore.o signal.o sigcontext.o syscalls.o sysrq.o \
|
|
sys_call_table.o
|
|
|
|
obj-$(CONFIG_HIGHMEM) += highmem.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
|
|
USER_OBJS := bugs.o ptrace_user.o sigcontext.o fault.o
|
|
|
|
SYMLINKS = bitops.c semaphore.c highmem.c module.c
|
|
|
|
include arch/um/scripts/Makefile.rules
|
|
|
|
bitops.c-dir = lib
|
|
semaphore.c-dir = kernel
|
|
highmem.c-dir = mm
|
|
module.c-dir = kernel
|
|
|
|
subdir- := util
|
|
|
|
include arch/um/scripts/Makefile.unmap
|