Module Name:    src
Committed By:   martin
Date:           Thu Jan 23 20:58:55 UTC 2014

Modified Files:
        src/sys/arch/arm/conf: Makefile.arm

Log Message:
Compile the armv4 cpufunc file with -mcpu=arm8 instead of arm9, to avoid
an armv4t marked object file which causes failure in the shark objcopy
step when creating the a.out version of the kernel.


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/sys/arch/arm/conf/Makefile.arm

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/conf/Makefile.arm
diff -u src/sys/arch/arm/conf/Makefile.arm:1.40 src/sys/arch/arm/conf/Makefile.arm:1.41
--- src/sys/arch/arm/conf/Makefile.arm:1.40	Sat Jan  4 01:33:11 2014
+++ src/sys/arch/arm/conf/Makefile.arm	Thu Jan 23 20:58:55 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.arm,v 1.40 2014/01/04 01:33:11 joerg Exp $
+#	$NetBSD: Makefile.arm,v 1.41 2014/01/23 20:58:55 martin Exp $
 
 # Makefile for NetBSD
 #
@@ -47,7 +47,7 @@ CFLAGS+=	 -mfloat-abi=soft
 
 # This files use instructions deprecated for ARMv7+, but still
 # included in kernel that build with higher -mcpu=... settings.
-CPPFLAGS.cpufunc_asm_armv4.S+=	-mcpu=arm9
+CPPFLAGS.cpufunc_asm_armv4.S+=	-mcpu=arm8
 CPPFLAGS.cpufunc_asm_armv6.S+=	-mcpu=arm1136j-s
 CPPFLAGS.cpufunc_asm_arm11.S+=	-mcpu=arm1136j-s
 CPPFLAGS.cpufunc_asm_xscale.S+=	-mcpu=xscale

Reply via email to