diff options
author | jake <jake@FreeBSD.org> | 2003-01-04 22:07:48 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2003-01-04 22:07:48 +0000 |
commit | a307536f906cea2e4ba4d10d51b320520f1a30c1 (patch) | |
tree | 343968325cabcf3b367593c41e6e0ce573592013 /sys/kern/imgact_elf64.c | |
parent | fdbb382f1cbb42ab486d1f7812f0f78c0317b799 (diff) | |
download | FreeBSD-src-a307536f906cea2e4ba4d10d51b320520f1a30c1.zip FreeBSD-src-a307536f906cea2e4ba4d10d51b320520f1a30c1.tar.gz |
Improve the way that an elf image activator for an alternate word size is
included in the kernel. Include imgact_elf.c in conf/files, instead of
both imgact_elf32.c and imgact_elf64.c, which will use the default word
size for an architecture as defined in machine/elf.h. Architectures that
wish to build an additional image activator for an alternate word size can
include either imgact_elf32.c or imgact_elf64.c in files.${ARCH}, which
allows it to be dependent on MD options instead of solely on architecture.
Glanced at by: peter
Diffstat (limited to 'sys/kern/imgact_elf64.c')
-rw-r--r-- | sys/kern/imgact_elf64.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/kern/imgact_elf64.c b/sys/kern/imgact_elf64.c index ea6d61d..a356591 100644 --- a/sys/kern/imgact_elf64.c +++ b/sys/kern/imgact_elf64.c @@ -26,13 +26,5 @@ * $FreeBSD$ */ -/* - * There ought to be a better way of deciding this. - */ -#if defined(__alpha__) || defined(__ia64__) || defined(__sparc64__) - #define __ELF_WORD_SIZE 64 - #include <kern/imgact_elf.c> - -#endif |