Sat Feb 9 20:47:07 2013 UTC ()
get the kernel from the release directory.


(christos)
diff -r1.36 -r1.37 src/etc/etc.evbarm/Makefile.inc

cvs diff -r1.36 -r1.37 src/etc/etc.evbarm/Makefile.inc (expand / switch to unified diff)

--- src/etc/etc.evbarm/Makefile.inc 2013/02/09 18:59:19 1.36
+++ src/etc/etc.evbarm/Makefile.inc 2013/02/09 20:47:06 1.37
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile.inc,v 1.36 2013/02/09 18:59:19 christos Exp $ 1# $NetBSD: Makefile.inc,v 1.37 2013/02/09 20:47:06 christos Exp $
2# 2#
3# etc.evbarm/Makefile.inc -- evbarm-specific etc Makefile targets 3# etc.evbarm/Makefile.inc -- evbarm-specific etc Makefile targets
4# 4#
5 5
6MKIMAGE= ${NETBSDSRCDIR}/distrib/utils/embedded/mkimage 6MKIMAGE= ${NETBSDSRCDIR}/distrib/utils/embedded/mkimage
7 7
8# If you change the list of distributed kernels, don't forget 8# If you change the list of distributed kernels, don't forget
9# to update the release documentation in distrib/notes/common/contents 9# to update the release documentation in distrib/notes/common/contents
10EVBARM_BOARDS= 10EVBARM_BOARDS=
11 11
12.if ${MACHINE_ARCH} == "arm" 12.if ${MACHINE_ARCH} == "arm"
13# Little endian platforms (armv4 or pre-armv5t) 13# Little endian platforms (armv4 or pre-armv5t)
14EVBARM_BOARDS+= ADI_BRH CP3100 GEMINI GUMSTIX INTEGRATOR \ 14EVBARM_BOARDS+= ADI_BRH CP3100 GEMINI GUMSTIX INTEGRATOR \
@@ -34,28 +34,29 @@ EVBARM_BOARDS+= ADI_BRH @@ -34,28 +34,29 @@ EVBARM_BOARDS+= ADI_BRH
34.for board in ${EVBARM_BOARDS} 34.for board in ${EVBARM_BOARDS}
35KERNEL_SETS+= ${board} 35KERNEL_SETS+= ${board}
36BUILD_KERNELS+= ${board}_INSTALL 36BUILD_KERNELS+= ${board}_INSTALL
37.endfor 37.endfor
38 38
39.if ${MACHINE_ARCH} == "arm" 39.if ${MACHINE_ARCH} == "arm"
40# Little endian platforms. 40# Little endian platforms.
41KERNEL_SETS+= IXM1200 HDL_G 41KERNEL_SETS+= IXM1200 HDL_G
42.endif 42.endif
43 43
44.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm" \ 44.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm" \
45 || ${MACHINE_ARCH} == "earmhf" 45 || ${MACHINE_ARCH} == "earmhf"
46KERNEL_SETS+= RPI 46KERNEL_SETS+= RPI
47RPI.kernel= ${KERNSRCDIR}/arch/evbarm/compile/RPI/kernel.img 47RPI.rel= ${RELEASEDIR}/${RELEASEMACHINEDIR}
48RPI.img= ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/gzimg/rpi.img 48RPI.kernel= ${RPI.rel}/installation/instkernel/netbsd-RPI.bin.gz
 49RPI.img= ${RPI.rel}/binary/gzimg/rpi.img
49snap_md_post: 50snap_md_post:
50 TOOL_MAKEFS=${TOOL_MAKEFS} \ 51 TOOL_MAKEFS=${TOOL_MAKEFS} \
51 TOOL_DISKLABEL=${TOOL_DISKLABEL} \ 52 TOOL_DISKLABEL=${TOOL_DISKLABEL} \
52 TOOL_FDISK=${TOOL_FDISK} \ 53 TOOL_FDISK=${TOOL_FDISK} \
53 ${MKIMAGE} -x -h rpi -D ${DESTDIR} -K ${RPI.kernel} \ 54 ${MKIMAGE} -x -h rpi -D ${DESTDIR} -K ${RPI.kernel} \
54 -S ${NETBSDSRCDIR} ${RPI.img} 55 -S ${NETBSDSRCDIR} ${RPI.img}
55.endif 56.endif
56 57
57.if ${MACHINE_ARCH} == "armeb" 58.if ${MACHINE_ARCH} == "armeb"
58# Big endian platforms. 59# Big endian platforms.
59KERNEL_SETS+= IXM1200 NSLU2 60KERNEL_SETS+= IXM1200 NSLU2
60.endif 61.endif
61 62