Home | History | Annotate | Line # | Download | only in etc.evbarm
Makefile.inc revision 1.23.18.2
      1  1.23.18.2     yamt #	$NetBSD: Makefile.inc,v 1.23.18.2 2012/10/30 18:49:02 yamt 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.23.18.2     yamt EVBARM_BOARDS=
      9       1.21    pavel 
     10       1.13  thorpej .if ${MACHINE_ARCH} == "arm"
     11  1.23.18.2     yamt # Little endian platforms (armv4 or pre-armv5t)
     12  1.23.18.2     yamt EVBARM_BOARDS+=		ADI_BRH BCM5301X CP3100 GEMINI GUMSTIX INTEGRATOR \
     13  1.23.18.2     yamt 			IQ80310 IQ80321 MINI2440 MV2120 SMDK2410 \
     14  1.23.18.2     yamt 			SMDK2800 TEAMASA_NPWR TS7200 TWINTAIL
     15  1.23.18.2     yamt .endif
     16  1.23.18.2     yamt 
     17  1.23.18.2     yamt .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm"
     18  1.23.18.2     yamt # Little endian platforms (armv5t+)
     19  1.23.18.2     yamt EVBARM_BOARDS+=		BEAGLEBOARD OPENRD SHEEVAPLUG TISDP2420
     20  1.23.18.2     yamt .endif
     21  1.23.18.2     yamt 
     22  1.23.18.2     yamt .if ${MACHINE_ARCH} == "armeb"
     23       1.13  thorpej # Big endian platforms
     24  1.23.18.2     yamt 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.18   nonaka KERNEL_SETS+=		IXM1200 HDL_G
     35  1.23.18.2     yamt .endif
     36  1.23.18.2     yamt 
     37  1.23.18.2     yamt .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm"
     38  1.23.18.2     yamt KERNEL_SETS+=		RPI
     39  1.23.18.2     yamt .endif
     40  1.23.18.2     yamt 
     41  1.23.18.2     yamt .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.23.18.2     yamt KERNEL_SUFFIXES=	bin srec ub
     47        1.6  thorpej 
     48        1.9    lukem INSTALLATION_DIRS+=	binary/gzimg		\
     49        1.7  thorpej 			installation/instkernel
     50