From 1f05ef36493eb57d2b7bc4201b6bc105869ea702 Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Tue, 15 Jul 2008 15:49:27 -0400 Subject: [PATCH] arm: ARM EABI socketcall This patch make that the sys_socketcall system call is available when EABI is used. The reason is that the user-space applications in both glibc_std rootfs and glibc_small rootfs are still using sys_socketcall to request kernel service. Signed-off-by: Zumeng Chen --- arch/arm/kernel/entry-common.S | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S index eb5cd77bf1d8..41021ceedca4 100644 --- a/arch/arm/kernel/entry-common.S +++ b/arch/arm/kernel/entry-common.S @@ -316,7 +316,8 @@ ENTRY(\sym) */ syscall_table_start sys_call_table #define COMPAT(nr, native, compat) syscall nr, native -#ifdef CONFIG_AEABI + +#if defined(CONFIG_AEABI) && !defined(CONFIG_OABI_COMPAT) #include #else #include -- 2.5.0