diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2010-08-21 17:22:43 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2010-08-21 17:22:43 +0000 |
commit | ac466f025ac277a12e867110893f9e10a9f99f53 (patch) | |
tree | 6f84834e75ca7afc0e5f48f3de3e6eefb33a2ab0 /sys/arch/sparc64 | |
parent | d8d85931e584061fe55f080ea5a0581784f9886a (diff) |
Rename file to reflect that it handles 64 bit ELF only.
ok miod@ (some time ago)
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/stand/ofwboot/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/sparc64/stand/ofwboot/boot.c | 4 | ||||
-rw-r--r-- | sys/arch/sparc64/stand/ofwboot/elf64_exec.c (renamed from sys/arch/sparc64/stand/ofwboot/elfXX_exec.c) | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/sparc64/stand/ofwboot/Makefile b/sys/arch/sparc64/stand/ofwboot/Makefile index d4ecd6768c5..249994e1d9b 100644 --- a/sys/arch/sparc64/stand/ofwboot/Makefile +++ b/sys/arch/sparc64/stand/ofwboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2009/08/28 13:21:55 jsing Exp $ +# $OpenBSD: Makefile,v 1.15 2010/08/21 17:22:42 jsing Exp $ # $NetBSD: Makefile,v 1.2 2001/03/04 14:50:05 mrg Exp $ CURDIR= ${.CURDIR} @@ -65,6 +65,6 @@ srt0.o: srt0.s ${NORMAL_S} # Explicit dependency for this. -boot.o: boot.c elfXX_exec.c +boot.o: boot.c elf64_exec.c .include <bsd.prog.mk> diff --git a/sys/arch/sparc64/stand/ofwboot/boot.c b/sys/arch/sparc64/stand/ofwboot/boot.c index 7568304346c..957becf48a6 100644 --- a/sys/arch/sparc64/stand/ofwboot/boot.c +++ b/sys/arch/sparc64/stand/ofwboot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.16 2009/11/04 12:03:57 jsing Exp $ */ +/* $OpenBSD: boot.c,v 1.17 2010/08/21 17:22:42 jsing Exp $ */ /* $NetBSD: boot.c,v 1.3 2001/05/31 08:55:19 mrg Exp $ */ /* * Copyright (c) 1997, 1999 Eduardo E. Horvath. All rights reserved. @@ -267,7 +267,7 @@ loadfile(int fd, char *args) } #ifdef SPARC_BOOT_ELF -#include "elfXX_exec.c" +#include "elf64_exec.c" #endif /* SPARC_BOOT_ELF */ int diff --git a/sys/arch/sparc64/stand/ofwboot/elfXX_exec.c b/sys/arch/sparc64/stand/ofwboot/elf64_exec.c index a3791e021ce..ba25baaeea4 100644 --- a/sys/arch/sparc64/stand/ofwboot/elfXX_exec.c +++ b/sys/arch/sparc64/stand/ofwboot/elf64_exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: elfXX_exec.c,v 1.8 2010/08/21 17:09:49 jsing Exp $ */ +/* $OpenBSD: elf64_exec.c,v 1.1 2010/08/21 17:22:42 jsing Exp $ */ /* $NetBSD: elfXX_exec.c,v 1.2 2001/08/15 20:08:15 eeh Exp $ */ /* |