Module Name:    src
Committed By:   matt
Date:           Sat Aug 11 07:18:53 UTC 2012

Modified Files:
        src/sys/arch/arm/arm: cpu_exec.c

Log Message:
Use oabi instead of atpcs32


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/arm/cpu_exec.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/arm/arm/cpu_exec.c
diff -u src/sys/arch/arm/arm/cpu_exec.c:1.2 src/sys/arch/arm/arm/cpu_exec.c:1.3
--- src/sys/arch/arm/arm/cpu_exec.c:1.2	Sun Aug  5 01:43:59 2012
+++ src/sys/arch/arm/arm/cpu_exec.c	Sat Aug 11 07:18:53 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: cpu_exec.c,v 1.2 2012/08/05 01:43:59 matt Exp $	*/
+/*	$NetBSD: cpu_exec.c,v 1.3 2012/08/11 07:18:53 matt Exp $	*/
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu_exec.c,v 1.2 2012/08/05 01:43:59 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu_exec.c,v 1.3 2012/08/11 07:18:53 matt Exp $");
 
 #include "opt_compat_netbsd.h"
 #include "opt_compat_netbsd32.h"
@@ -86,7 +86,7 @@ arm_netbsd_elf32_probe(struct lwp *l, st
 		return ENOEXEC;
 
 	if (netbsd32_p)
-		itp_suffix = (elf_aapcs_p) ? "eabi" : "apcs32";
+		itp_suffix = (elf_aapcs_p) ? "eabi" : "oabi";
 
 	if (itp_suffix != NULL)
 		(void)compat_elf_check_interp(epp, itp, itp_suffix);

Reply via email to