1 1.12 rearnsha # $NetBSD: Makefile.evbarm.inc,v 1.13 2002/07/15 17:13:30 ichiro 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.13 ichiro .if (${BOARDTYPE} == "ixm1200") 25 1.13 ichiro SYSTEM_FIRST_OBJ= ixm1200_start.o 26 1.13 ichiro SYSTEM_FIRST_SFILE= ${THISARM}/ixm1200/ixm1200_start.S 27 1.13 ichiro 28 1.13 ichiro LINKFLAGS= -T ${THISARM}/conf/ldscript.ixm1200 29 1.13 ichiro 30 1.13 ichiro SYSTEM_LD_TAIL_EXTRA= 31 1.13 ichiro .endif 32 1.13 ichiro 33 1.2 thorpej .if (${BOARDTYPE} == "iq80310") 34 1.10 thorpej SYSTEM_FIRST_OBJ= iq80310_start.o 35 1.10 thorpej SYSTEM_FIRST_SFILE= ${THISARM}/iq80310/iq80310_start.S 36 1.10 thorpej 37 1.10 thorpej LINKFLAGS= -T ${THISARM}/conf/ldscript.iq80310 38 1.11 thorpej 39 1.11 thorpej SYSTEM_LD_TAIL_EXTRA+=; \ 40 1.11 thorpej echo ${OBJCOPY} -S -O srec $@ $@.srec; \ 41 1.11 thorpej ${OBJCOPY} -S -O srec $@ $@.srec; \ 42 1.11 thorpej echo ${OBJCOPY} -S -O binary $@ $@.bin; \ 43 1.11 thorpej ${OBJCOPY} -S -O binary $@ $@.bin 44 1.11 thorpej 45 1.11 thorpej EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.srec@} 46 1.11 thorpej EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.bin@} 47 1.11 thorpej .endif 48 1.11 thorpej 49 1.11 thorpej .if (${BOARDTYPE} == "iq80321") 50 1.11 thorpej SYSTEM_FIRST_OBJ= iq80321_start.o 51 1.11 thorpej SYSTEM_FIRST_SFILE= ${THISARM}/iq80321/iq80321_start.S 52 1.11 thorpej 53 1.11 thorpej LINKFLAGS= -T ${THISARM}/conf/ldscript.iq80321 54 1.10 thorpej 55 1.3 thorpej SYSTEM_LD_TAIL_EXTRA+=; \ 56 1.2 thorpej echo ${OBJCOPY} -S -O srec $@ $@.srec; \ 57 1.8 thorpej ${OBJCOPY} -S -O srec $@ $@.srec; \ 58 1.8 thorpej echo ${OBJCOPY} -S -O binary $@ $@.bin; \ 59 1.8 thorpej ${OBJCOPY} -S -O binary $@ $@.bin 60 1.10 thorpej 61 1.6 atatat EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.srec@} 62 1.8 thorpej EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.bin@} 63 1.1 rearnsha .endif 64