ba9950c820
Some changes that I sent in didn't make 2.6.12-rc4 for some reason. This adds them back. We have an x86_64 definition of TOP_ADDR a reimplementation of the x86_64 csum_partial_copy_from_user some syntax fixes in arch/um/kernel/ptrace.c removal of a CFLAGS definition in the x86_64 Makefile some include changes in the x86_64 ptrace.c and user-offsets.h a syntax fix in elf-x86_64.h Also moved an include in the i386 and x86_64 Makefiles to make the symlinks work, and some small fixes from Al Viro. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
32 lines
707 B
Makefile
32 lines
707 B
Makefile
#
|
|
# Copyright 2003 PathScale, Inc.
|
|
#
|
|
# Licensed under the GPL
|
|
#
|
|
|
|
#XXX: why into lib-y?
|
|
lib-y = bitops.o bugs.o csum-partial.o delay.o fault.o mem.o memcpy.o \
|
|
ptrace.o ptrace_user.o semaphore.o sigcontext.o signal.o \
|
|
syscalls.o sysrq.o thunk.o syscall_table.o
|
|
|
|
obj-y := ksyms.o
|
|
obj-$(CONFIG_MODULES) += module.o um_module.o
|
|
|
|
USER_OBJS := ptrace_user.o sigcontext.o
|
|
|
|
SYMLINKS = bitops.c csum-copy.S csum-partial.c csum-wrappers.c memcpy.S \
|
|
semaphore.c thunk.S module.c
|
|
|
|
include arch/um/scripts/Makefile.rules
|
|
|
|
bitops.c-dir = lib
|
|
csum-copy.S-dir = lib
|
|
csum-partial.c-dir = lib
|
|
csum-wrappers.c-dir = lib
|
|
memcpy.S-dir = lib
|
|
semaphore.c-dir = kernel
|
|
thunk.S-dir = lib
|
|
module.c-dir = kernel
|
|
|
|
subdir- := util
|