diff options
author | Jeff Dike <jdike@addtoit.com> | 2005-09-03 18:57:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-09-05 03:06:23 -0400 |
commit | 75e5584c89d213d6089f64f22cd899fb172e4c95 (patch) | |
tree | 22bb81b9c699e06b3c8163933654fe3f84ae469d /arch/um/os-Linux/Makefile | |
parent | 30f7dabb083f8ff4ce541b5ac4e5d70cc173051a (diff) |
[PATCH] uml: use host AIO support
This patch makes UML use host AIO support when it (and
/usr/include/linux/aio_abi.h) are present. This is only the support, with no
consumers - a consumer is coming in the next patch.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/os-Linux/Makefile')
-rw-r--r-- | arch/um/os-Linux/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/um/os-Linux/Makefile b/arch/um/os-Linux/Makefile index 4ddf540284ce..351d96934679 100644 --- a/arch/um/os-Linux/Makefile +++ b/arch/um/os-Linux/Makefile | |||
@@ -3,11 +3,15 @@ | |||
3 | # Licensed under the GPL | 3 | # Licensed under the GPL |
4 | # | 4 | # |
5 | 5 | ||
6 | obj-y = elf_aux.o file.o process.o signal.o time.o tty.o user_syms.o drivers/ \ | 6 | obj-y = aio.o elf_aux.o file.o process.o signal.o time.o tty.o user_syms.o \ |
7 | sys-$(SUBARCH)/ | 7 | drivers/ sys-$(SUBARCH)/ |
8 | 8 | ||
9 | USER_OBJS := elf_aux.o file.o process.o signal.o time.o tty.o | 9 | USER_OBJS := aio.o elf_aux.o file.o process.o signal.o time.o tty.o |
10 | 10 | ||
11 | CFLAGS_user_syms.o += -DSUBARCH_$(SUBARCH) | 11 | CFLAGS_user_syms.o += -DSUBARCH_$(SUBARCH) |
12 | 12 | ||
13 | HAVE_AIO_ABI := $(shell [ -r /usr/include/linux/aio_abi.h ] && \ | ||
14 | echo -DHAVE_AIO_ABI ) | ||
15 | CFLAGS_aio.o += $(HAVE_AIO_ABI) | ||
16 | |||
13 | include arch/um/scripts/Makefile.rules | 17 | include arch/um/scripts/Makefile.rules |