Module Name: src Committed By: riz Date: Sun Aug 11 17:18:11 UTC 2013
Modified Files: src/distrib/evbarm/instkernel/instkernel: Makefile Log Message: RPI has an ARMv6 processor, so handle RPI_INSTALL properly when building for the earmv6* MACHINE_ARCHes. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/distrib/evbarm/instkernel/instkernel/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/distrib/evbarm/instkernel/instkernel/Makefile diff -u src/distrib/evbarm/instkernel/instkernel/Makefile:1.21 src/distrib/evbarm/instkernel/instkernel/Makefile:1.22 --- src/distrib/evbarm/instkernel/instkernel/Makefile:1.21 Thu Aug 1 21:11:41 2013 +++ src/distrib/evbarm/instkernel/instkernel/Makefile Sun Aug 11 17:18:11 2013 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2013/08/01 21:11:41 jklos Exp $ +# $NetBSD: Makefile,v 1.22 2013/08/11 17:18:11 riz Exp $ .include <bsd.own.mk> .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" @@ -32,7 +32,9 @@ MDSETTARGETS= ADI_BRH_INSTALL ${RAMDIS .if \ ${MACHINE_ARCH} == "arm" || \ ${MACHINE_ARCH} == "earm" || \ - ${MACHINE_ARCH} == "earmhf" + ${MACHINE_ARCH} == "earmhf" || \ + ${MACHINE_ARCH} == "earmv6" || \ + ${MACHINE_ARCH} == "earmv6hf" # Little endian (any ABI) platforms. MDSETTARGETS+= RPI_INSTALL ${SSHRAMDISK} - .endif