CVS commit: src/distrib/evbarm/instkernel/instkernel

2017-12-13 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Dec 13 11:37:37 UTC 2017

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
Fix evbarm build - patch from Harold Gutch on port-arm


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 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.28 src/distrib/evbarm/instkernel/instkernel/Makefile:1.29
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.28	Mon Dec 11 11:38:14 2017
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Wed Dec 13 11:37:37 2017
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.28 2017/12/11 11:38:14 jmcneill Exp $
+#	$NetBSD: Makefile,v 1.29 2017/12/13 11:37:37 skrll Exp $
 
 .include 
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -11,10 +11,11 @@ SSHRAMDISK=	${SSHRAMDISKDIR}/sshramdisk.
 .include "${NETBSDSRCDIR}/etc/etc.evbarm/Makefile.inc"
 
 MDSETTARGETS=
+MDSET_SUFFIXES.-=	srec create-srec  bin create-bin
 .for i in ${BUILD_KERNELS:M*_INSTALL}
 .if ${i} == "RPI_INSTALL" || ${i} == "RPI2_INSTALL"
-MDSETTARGETS+=		${i}	${SSHRAMDISK}	netbsd-${i}
-MDSET_SUFFIXES.${i}=	bin create-bin  img create-img
+MDSETTARGETS+=		${i}	${SSHRAMDISK}	-
+MDSET_SUFFIXES.${i}=	img create-img
 .else
 MDSETTARGETS+=		${i}	${RAMDISK}	-
 .endif
@@ -22,7 +23,6 @@ MDSETTARGETS+=		${i}	${RAMDISK}	-
 
 MDSET_RELEASEDIR=	installation/instkernel
 
-MDSET_SUFFIXES.-=	srec create-srec  bin create-bin
 create-srec=		${OBJCOPY} -O srec ${.TARGET:R} ${.TARGET}
 create-bin=		${OBJCOPY} -O binary ${.TARGET:R} ${.TARGET}
 create-img=	\



CVS commit: src/distrib/evbarm/instkernel/instkernel

2015-05-15 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Fri May 15 06:50:41 UTC 2015

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
Don't keep two list of build kernels.  include etc/etc.evbarm/Makefile.inc
and use it to generate list of MDSETTARGETS.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 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.26 src/distrib/evbarm/instkernel/instkernel/Makefile:1.27
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.26	Fri May 15 06:27:48 2015
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Fri May 15 06:50:41 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.26 2015/05/15 06:27:48 matt Exp $
+#	$NetBSD: Makefile,v 1.27 2015/05/15 06:50:41 matt Exp $
 
 .include bsd.own.mk
 .include ${NETBSDSRCDIR}/distrib/common/Makefile.distrib
@@ -8,63 +8,16 @@ RAMDISK=	${RAMDISKDIR}/ramdisk.fs
 SSHRAMDISKDIR!=	cd ${.CURDIR}/../sshramdisk  ${PRINTOBJDIR}
 SSHRAMDISK=	${SSHRAMDISKDIR}/sshramdisk.fs
 
-.if ${MACHINE_ARCH} == arm
-# Little endian platforms.
-MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDISK}	-	\
-			CP3100_INSTALL		${RAMDISK}	-	\
-			GEMINI_INSTALL		${RAMDISK}	-	\
-			GUMSTIX_INSTALL		${RAMDISK}	-	\
-			INTEGRATOR_INSTALL	${RAMDISK}	-	\
-			IQ80310_INSTALL		${RAMDISK}	-	\
-			IQ80321_INSTALL		${RAMDISK}	-	\
-			MINI2440_INSTALL	${RAMDISK}	-	\
-			OPENRD_INSTALL		${RAMDISK}	-	\
-			TS7200_INSTALL		${RAMDISK}	- 	\
-			TEAMASA_NPWR_INSTALL	${RAMDISK}	-	\
-			KUROBOX_PRO_INSTALL	${RAMDISK}	-
-.elif ${MACHINE_ARCH} == armeb
-# Big endian platforms.
-MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDISK}	-
-.endif
-
-.if \
-${MACHINE_ARCH} == arm || \
-${MACHINE_ARCH} == earm || \
-${MACHINE_ARCH} == earmhf || \
-${MACHINE_ARCH} == earmv6 || \
-${MACHINE_ARCH} == earmv6hf
-# Little endian (any ABI) ARMv6 platforms.
-MDSETTARGETS+=		RPI_INSTALL		${SSHRAMDISK}	-
-.endif
+.include ${NETBSDSRCDIR}/etc/etc.evbarm/Makefile.inc
 
-.if \
-${MACHINE_ARCH} == arm || \
-${MACHINE_ARCH} == earm || \
-${MACHINE_ARCH} == earmhf || \
-${MACHINE_ARCH} == earmv7 || \
-${MACHINE_ARCH} == earmv7hf
-# Little endian (any ABI) ARMv7 platforms.
-MDSETTARGETS+=		\
-			ALLWINNER_A80_INSTALL	${RAMDISK}	-	\
-			ARMADAXP_INSTALL	${RAMDISK}	-	\
-			BCM5301X_INSTALL	${RAMDISK}	-	\
-			BEAGLEBONE_INSTALL	${RAMDISK}	-	\
-			BEAGLEBOARD_INSTALL	${RAMDISK}	-	\
-			BEAGLEBOARDXM_INSTALL	${RAMDISK}	-	\
-			BPI_INSTALL		${RAMDISK}	-	\
-			CUBIEBOARD_INSTALL	${RAMDISK}	-	\
-			CUBIETRUCK_INSTALL	${RAMDISK}	-	\
-			HUMMINGBIRD_A31_INSTALL	${RAMDISK}	-	\
-			JETSONTK1_INSTALL	${RAMDISK}	-	\
-			KOBO_INSTALL		${RAMDISK}	-	\
-			MIRABOX_INSTALL		${RAMDISK}	-	\
-			NETWALKER_INSTALL	${RAMDISK}	-	\
-			ODROID-C1_INSTALL	${RAMDISK}	-	\
-			OMAP5EVM_INSTALL	${RAMDISK}	-	\
-			OVERO_INSTALL		${RAMDISK}	-	\
-			PANDABOARD_INSTALL	${RAMDISK}	-	\
-			RPI2_INSTALL		${SSHRAMDISK}	-
+MDSETTARGETS=
+.for i in ${BUILD_KERNELS:M*_INSTALL}
+.if ${i} == RPI_INSTALL || ${i} == RPI2_INSTALL
+MDSETTARGETS+=		${i}	${SSHRAMDISK}	-
+.else
+MDSETTARGETS+=		${i}	${RAMDISK}	-
 .endif
+.endfor
 
 MDSET_RELEASEDIR=	installation/instkernel
 
@@ -72,7 +25,6 @@ MDSET_SUFFIXES.-=	srec create-srec  bin 
 create-srec=		${OBJCOPY} -O srec ${.TARGET:R} ${.TARGET}
 create-bin=		${OBJCOPY} -O binary ${.TARGET:R} ${.TARGET}
 
-
 .include ${DISTRIBDIR}/common/Makefile.mdset
 
 .include bsd.prog.mk



CVS commit: src/distrib/evbarm/instkernel/instkernel

2015-05-15 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Fri May 15 06:27:48 UTC 2015

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
Update list of armv7 install kernels.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 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.25 src/distrib/evbarm/instkernel/instkernel/Makefile:1.26
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.25	Wed Nov  5 13:53:22 2014
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Fri May 15 06:27:48 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.25 2014/11/05 13:53:22 joerg Exp $
+#	$NetBSD: Makefile,v 1.26 2015/05/15 06:27:48 matt Exp $
 
 .include bsd.own.mk
 .include ${NETBSDSRCDIR}/distrib/common/Makefile.distrib
@@ -44,10 +44,26 @@ MDSETTARGETS+=		RPI_INSTALL		${SSHRAMDIS
 ${MACHINE_ARCH} == earmv7 || \
 ${MACHINE_ARCH} == earmv7hf
 # Little endian (any ABI) ARMv7 platforms.
-MDSETTARGETS+=		BCM5301X_INSTALL	${RAMDISK}	-	\
+MDSETTARGETS+=		\
+			ALLWINNER_A80_INSTALL	${RAMDISK}	-	\
+			ARMADAXP_INSTALL	${RAMDISK}	-	\
+			BCM5301X_INSTALL	${RAMDISK}	-	\
 			BEAGLEBONE_INSTALL	${RAMDISK}	-	\
+			BEAGLEBOARD_INSTALL	${RAMDISK}	-	\
+			BEAGLEBOARDXM_INSTALL	${RAMDISK}	-	\
+			BPI_INSTALL		${RAMDISK}	-	\
 			CUBIEBOARD_INSTALL	${RAMDISK}	-	\
-			CUBIETRUCK_INSTALL	${RAMDISK}	-
+			CUBIETRUCK_INSTALL	${RAMDISK}	-	\
+			HUMMINGBIRD_A31_INSTALL	${RAMDISK}	-	\
+			JETSONTK1_INSTALL	${RAMDISK}	-	\
+			KOBO_INSTALL		${RAMDISK}	-	\
+			MIRABOX_INSTALL		${RAMDISK}	-	\
+			NETWALKER_INSTALL	${RAMDISK}	-	\
+			ODROID-C1_INSTALL	${RAMDISK}	-	\
+			OMAP5EVM_INSTALL	${RAMDISK}	-	\
+			OVERO_INSTALL		${RAMDISK}	-	\
+			PANDABOARD_INSTALL	${RAMDISK}	-	\
+			RPI2_INSTALL		${SSHRAMDISK}	-
 .endif
 
 MDSET_RELEASEDIR=	installation/instkernel



CVS commit: src/distrib/evbarm/instkernel/instkernel

2014-11-05 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Wed Nov  5 13:53:22 UTC 2014

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
Prepare CUBIETRUCK_INSTALL too.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 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.24 src/distrib/evbarm/instkernel/instkernel/Makefile:1.25
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.24	Sat Mar  1 01:53:36 2014
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Wed Nov  5 13:53:22 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.24 2014/03/01 01:53:36 matt Exp $
+#	$NetBSD: Makefile,v 1.25 2014/11/05 13:53:22 joerg Exp $
 
 .include bsd.own.mk
 .include ${NETBSDSRCDIR}/distrib/common/Makefile.distrib
@@ -46,7 +46,8 @@ MDSETTARGETS+=		RPI_INSTALL		${SSHRAMDIS
 # Little endian (any ABI) ARMv7 platforms.
 MDSETTARGETS+=		BCM5301X_INSTALL	${RAMDISK}	-	\
 			BEAGLEBONE_INSTALL	${RAMDISK}	-	\
-			CUBIEBOARD_INSTALL	${RAMDISK}	-
+			CUBIEBOARD_INSTALL	${RAMDISK}	-	\
+			CUBIETRUCK_INSTALL	${RAMDISK}	-
 .endif
 
 MDSET_RELEASEDIR=	installation/instkernel



CVS commit: src/distrib/evbarm/instkernel/instkernel

2014-02-28 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sat Mar  1 01:53:36 UTC 2014

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
Split ARMv6 and ARMv7 kernels.
Handle armeb properly.
Add CUBIEBOARD


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 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.23 src/distrib/evbarm/instkernel/instkernel/Makefile:1.24
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.23	Fri Aug 30 10:13:39 2013
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Sat Mar  1 01:53:36 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.23 2013/08/30 10:13:39 skrll Exp $
+#	$NetBSD: Makefile,v 1.24 2014/03/01 01:53:36 matt Exp $
 
 .include bsd.own.mk
 .include ${NETBSDSRCDIR}/distrib/common/Makefile.distrib
@@ -11,7 +11,6 @@ SSHRAMDISK=	${SSHRAMDISKDIR}/sshramdisk.
 .if ${MACHINE_ARCH} == arm
 # Little endian platforms.
 MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDISK}	-	\
-			BCM5301X_INSTALL	${RAMDISK}	-	\
 			CP3100_INSTALL		${RAMDISK}	-	\
 			GEMINI_INSTALL		${RAMDISK}	-	\
 			GUMSTIX_INSTALL		${RAMDISK}	-	\
@@ -23,7 +22,7 @@ MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDIS
 			TS7200_INSTALL		${RAMDISK}	- 	\
 			TEAMASA_NPWR_INSTALL	${RAMDISK}	-	\
 			KUROBOX_PRO_INSTALL	${RAMDISK}	-
-.else
+.elif ${MACHINE_ARCH} == armeb
 # Big endian platforms.
 MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDISK}	-
 .endif
@@ -34,9 +33,20 @@ MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDIS
 ${MACHINE_ARCH} == earmhf || \
 ${MACHINE_ARCH} == earmv6 || \
 ${MACHINE_ARCH} == earmv6hf
-# Little endian (any ABI) platforms.
-MDSETTARGETS+=		RPI_INSTALL		${SSHRAMDISK}	-	\
-			BEAGLEBONE_INSTALL	${RAMDISK}	-
+# Little endian (any ABI) ARMv6 platforms.
+MDSETTARGETS+=		RPI_INSTALL		${SSHRAMDISK}	-
+.endif
+
+.if \
+${MACHINE_ARCH} == arm || \
+${MACHINE_ARCH} == earm || \
+${MACHINE_ARCH} == earmhf || \
+${MACHINE_ARCH} == earmv7 || \
+${MACHINE_ARCH} == earmv7hf
+# Little endian (any ABI) ARMv7 platforms.
+MDSETTARGETS+=		BCM5301X_INSTALL	${RAMDISK}	-	\
+			BEAGLEBONE_INSTALL	${RAMDISK}	-	\
+			CUBIEBOARD_INSTALL	${RAMDISK}	-
 .endif
 
 MDSET_RELEASEDIR=	installation/instkernel



CVS commit: src/distrib/evbarm/instkernel/instkernel

2013-08-30 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Fri Aug 30 10:13:39 UTC 2013

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
PR/48164: BEAGLEBONE_INSTALL kernel not built with preferred ABI for
platform


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 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.22 src/distrib/evbarm/instkernel/instkernel/Makefile:1.23
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.22	Sun Aug 11 17:18:11 2013
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Fri Aug 30 10:13:39 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.22 2013/08/11 17:18:11 riz Exp $
+#	$NetBSD: Makefile,v 1.23 2013/08/30 10:13:39 skrll Exp $
 
 .include bsd.own.mk
 .include ${NETBSDSRCDIR}/distrib/common/Makefile.distrib
@@ -12,7 +12,6 @@ SSHRAMDISK=	${SSHRAMDISKDIR}/sshramdisk.
 # Little endian platforms.
 MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDISK}	-	\
 			BCM5301X_INSTALL	${RAMDISK}	-	\
-			BEAGLEBONE_INSTALL	${RAMDISK}	-	\
 			CP3100_INSTALL		${RAMDISK}	-	\
 			GEMINI_INSTALL		${RAMDISK}	-	\
 			GUMSTIX_INSTALL		${RAMDISK}	-	\
@@ -36,7 +35,8 @@ MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDIS
 ${MACHINE_ARCH} == earmv6 || \
 ${MACHINE_ARCH} == earmv6hf
 # Little endian (any ABI) platforms.
-MDSETTARGETS+=		RPI_INSTALL		${SSHRAMDISK}	-
+MDSETTARGETS+=		RPI_INSTALL		${SSHRAMDISK}	-	\
+			BEAGLEBONE_INSTALL	${RAMDISK}	-
 .endif
 
 MDSET_RELEASEDIR=	installation/instkernel



CVS commit: src/distrib/evbarm/instkernel/instkernel

2013-08-11 Thread Jeff Rizzo
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



CVS commit: src/distrib/evbarm/instkernel/instkernel

2013-08-01 Thread John Klos
Module Name:src
Committed By:   jklos
Date:   Thu Aug  1 21:11:41 UTC 2013

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
Build BeagleBone installation kernel.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 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.20 src/distrib/evbarm/instkernel/instkernel/Makefile:1.21
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.20	Mon May  6 17:42:30 2013
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Thu Aug  1 21:11:41 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.20 2013/05/06 17:42:30 skrll Exp $
+#	$NetBSD: Makefile,v 1.21 2013/08/01 21:11:41 jklos Exp $
 
 .include bsd.own.mk
 .include ${NETBSDSRCDIR}/distrib/common/Makefile.distrib
@@ -12,6 +12,7 @@ SSHRAMDISK=	${SSHRAMDISKDIR}/sshramdisk.
 # Little endian platforms.
 MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDISK}	-	\
 			BCM5301X_INSTALL	${RAMDISK}	-	\
+			BEAGLEBONE_INSTALL	${RAMDISK}	-	\
 			CP3100_INSTALL		${RAMDISK}	-	\
 			GEMINI_INSTALL		${RAMDISK}	-	\
 			GUMSTIX_INSTALL		${RAMDISK}	-	\



CVS commit: src/distrib/evbarm/instkernel/instkernel

2013-05-06 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Mon May  6 17:42:31 UTC 2013

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
Fix up evbearm* release builds.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 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.19 src/distrib/evbarm/instkernel/instkernel/Makefile:1.20
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.19	Tue Mar 19 22:16:53 2013
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Mon May  6 17:42:30 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.19 2013/03/19 22:16:53 garbled Exp $
+#	$NetBSD: Makefile,v 1.20 2013/05/06 17:42:30 skrll Exp $
 
 .include bsd.own.mk
 .include ${NETBSDSRCDIR}/distrib/common/Makefile.distrib
@@ -22,12 +22,20 @@ MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDIS
 			OPENRD_INSTALL		${RAMDISK}	-	\
 			TS7200_INSTALL		${RAMDISK}	- 	\
 			TEAMASA_NPWR_INSTALL	${RAMDISK}	-	\
-			RPI_INSTALL		${SSHRAMDISK}	-	\
 			KUROBOX_PRO_INSTALL	${RAMDISK}	-
 .else
 # Big endian platforms.
 MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDISK}	-
 .endif
+
+.if \
+${MACHINE_ARCH} == arm || \
+${MACHINE_ARCH} == earm || \
+${MACHINE_ARCH} == earmhf
+# Little endian (any ABI) platforms.
+MDSETTARGETS+=		RPI_INSTALL		${SSHRAMDISK}	-
+.endif
+
 MDSET_RELEASEDIR=	installation/instkernel
 
 MDSET_SUFFIXES.-=	srec create-srec  bin create-bin



CVS commit: src/distrib/evbarm/instkernel/instkernel

2012-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Oct 26 19:13:56 UTC 2012

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
Add OPENRD_INSTALL.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 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.16 src/distrib/evbarm/instkernel/instkernel/Makefile:1.17
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.16	Sat Sep  1 02:05:02 2012
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Fri Oct 26 19:13:56 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.16 2012/09/01 02:05:02 matt Exp $
+#	$NetBSD: Makefile,v 1.17 2012/10/26 19:13:56 msaitoh Exp $
 
 .include bsd.own.mk
 .include ${NETBSDSRCDIR}/distrib/common/Makefile.distrib
@@ -17,6 +17,7 @@ MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDIS
 			IQ80310_INSTALL		${RAMDISK}	-	\
 			IQ80321_INSTALL		${RAMDISK}	-	\
 			MINI2440_INSTALL	${RAMDISK}	-	\
+			OPENRD_INSTALL		${RAMDISK}	-	\
 			TS7200_INSTALL		${RAMDISK}	- 	\
 			TEAMASA_NPWR_INSTALL	${RAMDISK}	-
 .else



CVS commit: src/distrib/evbarm/instkernel/instkernel

2012-08-31 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sat Sep  1 02:05:02 UTC 2012

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
Add BCM5301X_INSTALL


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 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.15 src/distrib/evbarm/instkernel/instkernel/Makefile:1.16
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.15	Wed Feb  1 03:35:14 2012
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Sat Sep  1 02:05:02 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.15 2012/02/01 03:35:14 nisimura Exp $
+#	$NetBSD: Makefile,v 1.16 2012/09/01 02:05:02 matt Exp $
 
 .include bsd.own.mk
 .include ${NETBSDSRCDIR}/distrib/common/Makefile.distrib
@@ -9,6 +9,7 @@ RAMDISK=	${RAMDISKDIR}/ramdisk.fs
 .if ${MACHINE_ARCH} == arm
 # Little endian platforms.
 MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDISK}	-	\
+			BCM5301X_INSTALL	${RAMDISK}	-	\
 			CP3100_INSTALL		${RAMDISK}	-	\
 			GEMINI_INSTALL		${RAMDISK}	-	\
 			GUMSTIX_INSTALL		${RAMDISK}	-	\



CVS commit: src/distrib/evbarm/instkernel/instkernel

2012-01-31 Thread Tohru Nishimura
Module Name:src
Committed By:   nisimura
Date:   Wed Feb  1 03:35:14 UTC 2012

Modified Files:
src/distrib/evbarm/instkernel/instkernel: Makefile

Log Message:
add MINI2440_INSTALL image to the distribution.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 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.14 src/distrib/evbarm/instkernel/instkernel/Makefile:1.15
--- src/distrib/evbarm/instkernel/instkernel/Makefile:1.14	Fri Oct 31 02:04:04 2008
+++ src/distrib/evbarm/instkernel/instkernel/Makefile	Wed Feb  1 03:35:14 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.14 2008/10/31 02:04:04 cliff Exp $
+#	$NetBSD: Makefile,v 1.15 2012/02/01 03:35:14 nisimura Exp $
 
 .include bsd.own.mk
 .include ${NETBSDSRCDIR}/distrib/common/Makefile.distrib
@@ -15,6 +15,7 @@ MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDIS
 			INTEGRATOR_INSTALL	${RAMDISK}	-	\
 			IQ80310_INSTALL		${RAMDISK}	-	\
 			IQ80321_INSTALL		${RAMDISK}	-	\
+			MINI2440_INSTALL	${RAMDISK}	-	\
 			TS7200_INSTALL		${RAMDISK}	- 	\
 			TEAMASA_NPWR_INSTALL	${RAMDISK}	-
 .else