From 83ac9292bdb6397a64c601eec55f4912bc2a1ce7 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Fri, 23 Feb 2007 12:38:34 +0000 Subject: [PATCH] add the arch-dependent elf defines. Signed-off-by: Ronald G. Minnich Acked-by: Ronald G. Minnich Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@101 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- include/cpu/generic/x86/arch/elf.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 include/cpu/generic/x86/arch/elf.h diff --git a/include/cpu/generic/x86/arch/elf.h b/include/cpu/generic/x86/arch/elf.h new file mode 100644 index 0000000000..2389888a8c --- /dev/null +++ b/include/cpu/generic/x86/arch/elf.h @@ -0,0 +1,8 @@ +#ifndef CPU_GENERIC_X86_ARCH_ELF_H +#define CPU_GENERIC_X86_ARCH_ELF_H + +#define ELF_CLASS ELFCLASS32 +#define ELF_DATA ELFDATA2LSB +#define ELF_ARCH EM_386 + +#endif /* CPU_GENERIC_X86_ARCH_ELF_H */