Makefile.inc revision 1.23.8.1 1 # $NetBSD: Makefile.inc,v 1.23.8.1 2014/02/15 17:49:12 matt Exp $
2 #
3 # etc.evbarm/Makefile.inc -- evbarm-specific etc Makefile targets
4 #
5
6 # If you change the list of distributed kernels, don't forget
7 # to update the release documentation in distrib/notes/common/contents
8
9 .if ${MACHINE_ARCH} == "arm"
10 # Little endian platforms
11 EVBARM_BOARDS= ADI_BRH CP3100 GEMINI GUMSTIX INTEGRATOR \
12 IQ80310 IQ80321 SMDK2410 SMDK2800 \
13 TEAMASA_NPWR TISDP2420 TS7200 TWINTAIL
14 EVBARM_BOARDS+= BCM5301X BCM56340
15 .elif ${MACHINE_ARCH:Marmv7*} != ""
16 EVBARM_BOARDS= BCM5301X BCM56340
17 .else
18 # Big endian platforms
19 EVBARM_BOARDS= ADI_BRH
20 .endif
21
22 .for board in ${EVBARM_BOARDS}
23 KERNEL_SETS+= ${board}
24 BUILD_KERNELS+= ${board}_INSTALL
25 .endfor
26
27 .if ${MACHINE_ARCH} == "arm"
28 # Little endian platforms.
29 KERNEL_SETS+= IXM1200 HDL_G
30 .else
31 # Big endian platforms.
32 KERNEL_SETS+= IXM1200 NSLU2
33 .endif
34
35 KERNEL_SUFFIXES= bin srec
36
37 INSTALLATION_DIRS+= binary/gzimg \
38 installation/instkernel
39