1 1.30 matt # $NetBSD: Makefile.inc,v 1.30 2012/08/06 07:51:13 matt Exp $ 2 1.1 thorpej # 3 1.1 thorpej # etc.evbarm/Makefile.inc -- evbarm-specific etc Makefile targets 4 1.1 thorpej # 5 1.1 thorpej 6 1.21 pavel # If you change the list of distributed kernels, don't forget 7 1.21 pavel # to update the release documentation in distrib/notes/common/contents 8 1.30 matt EVBARM_BOARDS= 9 1.21 pavel 10 1.13 thorpej .if ${MACHINE_ARCH} == "arm" 11 1.30 matt # Little endian platforms (armv4 or pre-armv5t) 12 1.30 matt EVBARM_BOARDS+= ADI_BRH CP3100 GEMINI GUMSTIX INTEGRATOR \ 13 1.30 matt IQ80310 IQ80321 MINI2440 MV2120 SMDK2410 \ 14 1.30 matt SMDK2800 TEAMASA_NPWR TS7200 TWINTAIL 15 1.30 matt .endif 16 1.30 matt 17 1.30 matt .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm" 18 1.30 matt # Little endian platforms (armv5t+) 19 1.30 matt EVBARM_BOARDS+= SHEEVAPLUG TISDP2420 20 1.30 matt .endif 21 1.30 matt 22 1.30 matt .if ${MACHINE_ARCH} == "armeb" 23 1.13 thorpej # Big endian platforms 24 1.30 matt EVBARM_BOARDS+= ADI_BRH 25 1.13 thorpej .endif 26 1.13 thorpej 27 1.13 thorpej .for board in ${EVBARM_BOARDS} 28 1.12 thorpej KERNEL_SETS+= ${board} 29 1.12 thorpej BUILD_KERNELS+= ${board}_INSTALL 30 1.12 thorpej .endfor 31 1.12 thorpej 32 1.13 thorpej .if ${MACHINE_ARCH} == "arm" 33 1.13 thorpej # Little endian platforms. 34 1.30 matt KERNEL_SETS+= IXM1200 HDL_G 35 1.30 matt .endif 36 1.30 matt 37 1.30 matt .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm" 38 1.30 matt KERNEL_SETS+= BEAGLEBOARD RPI 39 1.30 matt .endif 40 1.30 matt 41 1.30 matt .if ${MACHINE_ARCH} == "armeb" 42 1.13 thorpej # Big endian platforms. 43 1.17 scw KERNEL_SETS+= IXM1200 NSLU2 44 1.13 thorpej .endif 45 1.12 thorpej 46 1.29 kiyohara KERNEL_SUFFIXES= bin srec ub 47 1.6 thorpej 48 1.9 lukem INSTALLATION_DIRS+= binary/gzimg \ 49 1.7 thorpej installation/instkernel 50