1 1.33 matt # $NetBSD: Makefile.inc,v 1.33 2013/02/05 07:34:07 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.31 matt EVBARM_BOARDS+= ADI_BRH BCM5301X 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.33 matt .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm" \ 18 1.33 matt || ${MACHINE_ARCH} == "earmhf" 19 1.30 matt # Little endian platforms (armv5t+) 20 1.32 msaitoh EVBARM_BOARDS+= BEAGLEBOARD OPENRD SHEEVAPLUG TISDP2420 21 1.30 matt .endif 22 1.30 matt 23 1.30 matt .if ${MACHINE_ARCH} == "armeb" 24 1.13 thorpej # Big endian platforms 25 1.30 matt EVBARM_BOARDS+= ADI_BRH 26 1.13 thorpej .endif 27 1.13 thorpej 28 1.13 thorpej .for board in ${EVBARM_BOARDS} 29 1.12 thorpej KERNEL_SETS+= ${board} 30 1.12 thorpej BUILD_KERNELS+= ${board}_INSTALL 31 1.12 thorpej .endfor 32 1.12 thorpej 33 1.13 thorpej .if ${MACHINE_ARCH} == "arm" 34 1.13 thorpej # Little endian platforms. 35 1.30 matt KERNEL_SETS+= IXM1200 HDL_G 36 1.30 matt .endif 37 1.30 matt 38 1.33 matt .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm" \ 39 1.33 matt || ${MACHINE_ARCH} == "earmhf" 40 1.32 msaitoh KERNEL_SETS+= RPI 41 1.30 matt .endif 42 1.30 matt 43 1.30 matt .if ${MACHINE_ARCH} == "armeb" 44 1.13 thorpej # Big endian platforms. 45 1.17 scw KERNEL_SETS+= IXM1200 NSLU2 46 1.13 thorpej .endif 47 1.12 thorpej 48 1.29 kiyohara KERNEL_SUFFIXES= bin srec ub 49 1.6 thorpej 50 1.9 lukem INSTALLATION_DIRS+= binary/gzimg \ 51 1.7 thorpej installation/instkernel 52