Home | History | Annotate | Line # | Download | only in conf
Makefile.evbarm.inc revision 1.12
      1  1.12  rearnsha #	$NetBSD: Makefile.evbarm.inc,v 1.12 2002/07/08 16:15:44 rearnsha Exp $
      2   1.9   thorpej 
      3   1.9   thorpej SYSTEM_LD_TAIL_EXTRA=; \
      4   1.9   thorpej 	echo "${DBSYM} $@ || true"; \
      5   1.9   thorpej 	${DBSYM} $@ || true
      6   1.1  rearnsha 
      7   1.1  rearnsha .if (${BOARDTYPE} == "integrator")
      8   1.5   thorpej GENASSYM_EXTRAS+=	${THISARM}/ifpga/genassym.cf
      9   1.1  rearnsha SYSTEM_FIRST_OBJ=	intmmu.o
     10   1.4     lukem SYSTEM_FIRST_SFILE=	${THISARM}/integrator/intmmu.S
     11  1.12  rearnsha 
     12  1.12  rearnsha LINKFLAGS=	-T ${THISARM}/conf/ldscript.integrator
     13  1.12  rearnsha 
     14  1.12  rearnsha SYSTEM_LD_TAIL_EXTRA+=; \
     15  1.12  rearnsha 	echo ${OBJCOPY} -S -O srec $@ $@.srec; \
     16  1.12  rearnsha 	${OBJCOPY} -S -O srec $@ $@.srec; \
     17  1.12  rearnsha 	echo ${OBJCOPY} -S -O binary $@ $@.bin; \
     18  1.12  rearnsha 	${OBJCOPY} -S -O binary $@ $@.bin
     19  1.12  rearnsha 
     20  1.12  rearnsha EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.srec@}
     21  1.12  rearnsha EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.bin@}
     22   1.2   thorpej .endif
     23   1.3   thorpej 
     24   1.2   thorpej .if (${BOARDTYPE} == "iq80310")
     25  1.10   thorpej SYSTEM_FIRST_OBJ=	iq80310_start.o
     26  1.10   thorpej SYSTEM_FIRST_SFILE=	${THISARM}/iq80310/iq80310_start.S
     27  1.10   thorpej 
     28  1.10   thorpej LINKFLAGS=	-T ${THISARM}/conf/ldscript.iq80310
     29  1.11   thorpej 
     30  1.11   thorpej SYSTEM_LD_TAIL_EXTRA+=; \
     31  1.11   thorpej 	echo ${OBJCOPY} -S -O srec $@ $@.srec; \
     32  1.11   thorpej 	${OBJCOPY} -S -O srec $@ $@.srec; \
     33  1.11   thorpej 	echo ${OBJCOPY} -S -O binary $@ $@.bin; \
     34  1.11   thorpej 	${OBJCOPY} -S -O binary $@ $@.bin
     35  1.11   thorpej 
     36  1.11   thorpej EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.srec@}
     37  1.11   thorpej EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.bin@}
     38  1.11   thorpej .endif
     39  1.11   thorpej 
     40  1.11   thorpej .if (${BOARDTYPE} == "iq80321")
     41  1.11   thorpej SYSTEM_FIRST_OBJ=	iq80321_start.o
     42  1.11   thorpej SYSTEM_FIRST_SFILE=	${THISARM}/iq80321/iq80321_start.S
     43  1.11   thorpej 
     44  1.11   thorpej LINKFLAGS=	-T ${THISARM}/conf/ldscript.iq80321
     45  1.10   thorpej 
     46   1.3   thorpej SYSTEM_LD_TAIL_EXTRA+=; \
     47   1.2   thorpej 	echo ${OBJCOPY} -S -O srec $@ $@.srec; \
     48   1.8   thorpej 	${OBJCOPY} -S -O srec $@ $@.srec; \
     49   1.8   thorpej 	echo ${OBJCOPY} -S -O binary $@ $@.bin; \
     50   1.8   thorpej 	${OBJCOPY} -S -O binary $@ $@.bin
     51  1.10   thorpej 
     52   1.6    atatat EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.srec@}
     53   1.8   thorpej EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.bin@}
     54   1.1  rearnsha .endif
     55