svn commit: r257332 - head/sys/conf

Zbigniew Bodek zbb at FreeBSD.org
Tue Oct 29 13:16:05 UTC 2013


Author: zbb
Date: Tue Oct 29 13:16:05 2013
New Revision: 257332
URL: http://svnweb.freebsd.org/changeset/base/257332

Log:
  Add missing ARMv6 CPU functions to ARM Makefile
  
  Will fix RPI-B kernel build failure since it adds missing
  armv6_idcache_wbinv_all which was previously taken from cpufunc_asm_pj4b.S.
  
  Reviewed by:	gber

Modified:
  head/sys/conf/Makefile.arm

Modified: head/sys/conf/Makefile.arm
==============================================================================
--- head/sys/conf/Makefile.arm	Tue Oct 29 12:56:21 2013	(r257331)
+++ head/sys/conf/Makefile.arm	Tue Oct 29 13:16:05 2013	(r257332)
@@ -75,7 +75,8 @@ FILES_CPU_FUNC =	$S/$M/$M/cpufunc_asm_ar
 	$S/$M/$M/cpufunc_asm_xscale.S $S/$M/$M/cpufunc_asm.S \
 	$S/$M/$M/cpufunc_asm_xscale_c3.S $S/$M/$M/cpufunc_asm_armv5_ec.S \
 	$S/$M/$M/cpufunc_asm_fa526.S $S/$M/$M/cpufunc_asm_sheeva.S \
-	$S/$M/$M/cpufunc_asm_pj4b.S $S/$M/$M/cpufunc_asm_armv7.S
+	$S/$M/$M/cpufunc_asm_pj4b.S $S/$M/$M/cpufunc_asm_armv6.S \
+	$S/$M/$M/cpufunc_asm_armv7.S
 
 KERNEL_EXTRA=trampoline
 KERNEL_EXTRA_INSTALL=kernel.gz.tramp


More information about the svn-src-head mailing list