[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1454946278-13859-2-git-send-email-daniel.wagner@bmw-carit.de>
Date: Mon, 8 Feb 2016 16:44:36 +0100
From: Daniel Wagner <daniel.wagner@...-carit.de>
To: "Maciej W. Rozycki" <macro@...tec.com>
Cc: Ralf Baechle <ralf@...ux-mips.org>, linux-kernel@...r.kernel.org,
linux-mips@...ux-mips.org,
Daniel Wagner <daniel.wagner@...-carit.de>
Subject: [PATCH v3 1/3] mips: Use arch specific auxvec.h instead of generic-asm version
The generic auxvec.h is used instead the arch specific version.
This happens when cross compiling the kernel.
mips64-linux-gnu-gcc (GCC) 5.2.1 20151104 (Red Hat Cross 5.2.1-4)
arch/mips/kernel/../../../fs/binfmt_elf.c: In function ‘create_elf_tables’:
./arch/mips/include/asm/elf.h:425:14: error: ‘AT_SYSINFO_EHDR’ undeclared (first use in this function)
NEW_AUX_ENT(AT_SYSINFO_EHDR, \
^
arch/mips/kernel/../../../fs/binfmt_elf.c:222:26: note: in definition of macro ‘NEW_AUX_ENT’
elf_info[ei_index++] = id; \
^
arch/mips/kernel/../../../fs/binfmt_elf.c:233:2: note: in expansion of macro ‘ARCH_DLINFO’
ARCH_DLINFO;
^
./arch/mips/include/asm/elf.h:425:14: note: each undeclared identifier is reported only once for each function it appears in
NEW_AUX_ENT(AT_SYSINFO_EHDR, \
^
arch/mips/kernel/../../../fs/binfmt_elf.c:222:26: note: in definition of macro ‘NEW_AUX_ENT’
elf_info[ei_index++] = id; \
^
arch/mips/kernel/../../../fs/binfmt_elf.c:233:2: note: in expansion of macro ‘ARCH_DLINFO’
ARCH_DLINFO;
^
Signed-off-by: Daniel Wagner <daniel.wagner@...-carit.de>
---
arch/mips/include/asm/auxvec.h | 1 +
1 file changed, 1 insertion(+)
create mode 100644 arch/mips/include/asm/auxvec.h
diff --git a/arch/mips/include/asm/auxvec.h b/arch/mips/include/asm/auxvec.h
new file mode 100644
index 0000000..fbd388c
--- /dev/null
+++ b/arch/mips/include/asm/auxvec.h
@@ -0,0 +1 @@
+#include <uapi/asm/auxvec.h>
--
2.5.0
Powered by blists - more mailing lists