Makefile.inc revision 1.23.18.2 1 # $NetBSD: Makefile.inc,v 1.23.18.2 2012/10/30 18:49:02 yamt 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 EVBARM_BOARDS=
9
10 .if ${MACHINE_ARCH} == "arm"
11 # Little endian platforms (armv4 or pre-armv5t)
12 EVBARM_BOARDS+= ADI_BRH BCM5301X CP3100 GEMINI GUMSTIX INTEGRATOR \
13 IQ80310 IQ80321 MINI2440 MV2120 SMDK2410 \
14 SMDK2800 TEAMASA_NPWR TS7200 TWINTAIL
15 .endif
16
17 .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm"
18 # Little endian platforms (armv5t+)
19 EVBARM_BOARDS+= BEAGLEBOARD OPENRD SHEEVAPLUG TISDP2420
20 .endif
21
22 .if ${MACHINE_ARCH} == "armeb"
23 # Big endian platforms
24 EVBARM_BOARDS+= ADI_BRH
25 .endif
26
27 .for board in ${EVBARM_BOARDS}
28 KERNEL_SETS+= ${board}
29 BUILD_KERNELS+= ${board}_INSTALL
30 .endfor
31
32 .if ${MACHINE_ARCH} == "arm"
33 # Little endian platforms.
34 KERNEL_SETS+= IXM1200 HDL_G
35 .endif
36
37 .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm"
38 KERNEL_SETS+= RPI
39 .endif
40
41 .if ${MACHINE_ARCH} == "armeb"
42 # Big endian platforms.
43 KERNEL_SETS+= IXM1200 NSLU2
44 .endif
45
46 KERNEL_SUFFIXES= bin srec ub
47
48 INSTALLATION_DIRS+= binary/gzimg \
49 installation/instkernel
50