Sat Mar 30 13:53:19 2019 UTC ()
Remove redundant TARGET_ENDIANNESS check


(jmcneill)
diff -r1.102 -r1.103 src/etc/etc.evbarm/Makefile.inc

cvs diff -r1.102 -r1.103 src/etc/etc.evbarm/Makefile.inc (expand / switch to unified diff)

--- src/etc/etc.evbarm/Makefile.inc 2019/03/30 13:05:24 1.102
+++ src/etc/etc.evbarm/Makefile.inc 2019/03/30 13:53:19 1.103
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile.inc,v 1.102 2019/03/30 13:05:24 jmcneill Exp $ 1# $NetBSD: Makefile.inc,v 1.103 2019/03/30 13:53:19 jmcneill Exp $
2# 2#
3# etc.evbarm/Makefile.inc -- evbarm-specific etc Makefile targets 3# etc.evbarm/Makefile.inc -- evbarm-specific etc Makefile targets
4# 4#
5 5
6MKIMAGE= ${NETBSDSRCDIR}/distrib/utils/embedded/mkimage 6MKIMAGE= ${NETBSDSRCDIR}/distrib/utils/embedded/mkimage
7 7
8# If you change the list of distributed kernels, don't forget 8# If you change the list of distributed kernels, don't forget
9# to update the release documentation in distrib/notes/common/contents 9# to update the release documentation in distrib/notes/common/contents
10EVBARM_BOARDS= 10EVBARM_BOARDS=
11.for i in armv4 xscale armv5t armv6 armv7 arm64 11.for i in armv4 xscale armv5t armv6 armv7 arm64
12EVBARM_BOARDS.${i}= 12EVBARM_BOARDS.${i}=
13.endfor 13.endfor
14 14
@@ -170,27 +170,27 @@ KERNEL_SETS+= ${KERNEL_SETS.${arch}} @@ -170,27 +170,27 @@ KERNEL_SETS+= ${KERNEL_SETS.${arch}}
170.endfor 170.endfor
171 171
172.if !empty(MACHINE_ARCH:Mearmv7*) 172.if !empty(MACHINE_ARCH:Mearmv7*)
173KERNEL_SETS+= GENERIC 173KERNEL_SETS+= GENERIC
174.endif 174.endif
175 175
176.if !empty(MACHINE_ARCH:Maarch64) 176.if !empty(MACHINE_ARCH:Maarch64)
177smp_efibootaa64: 177smp_efibootaa64:
178 cd ${KERNSRCDIR}/stand/efiboot/bootaa64 && ${MAKE} release 178 cd ${KERNSRCDIR}/stand/efiboot/bootaa64 && ${MAKE} release
179SNAP_MD_POST_DEPS+= smp_efibootaa64 179SNAP_MD_POST_DEPS+= smp_efibootaa64
180INSTALLATION_DIRS+= installation/misc 180INSTALLATION_DIRS+= installation/misc
181.endif 181.endif
182 182
183.if ${TARGET_ENDIANNESS} == "1234" && !empty(MACHINE_ARCH:Mearmv7hf) 183.if !empty(MACHINE_ARCH:Mearmv7hf)
184smp_efibootarm: 184smp_efibootarm:
185 cd ${KERNSRCDIR}/stand/efiboot/bootarm && ${MAKE} release 185 cd ${KERNSRCDIR}/stand/efiboot/bootarm && ${MAKE} release
186SNAP_MD_POST_DEPS+= smp_efibootarm 186SNAP_MD_POST_DEPS+= smp_efibootarm
187INSTALLATION_DIRS+= installation/misc 187INSTALLATION_DIRS+= installation/misc
188.endif 188.endif
189 189
190.if !empty(MACHINE_ARCH:M*armv7*) && empty(ALL_KERNELS) 190.if !empty(MACHINE_ARCH:M*armv7*) && empty(ALL_KERNELS)
191smp_armv7: __mkimage 191smp_armv7: __mkimage
192MKI_OPTS.smp_armv7= -K ${IMAGE.kern} 192MKI_OPTS.smp_armv7= -K ${IMAGE.kern}
193SNAP_MD_POST_DEPS+= smp_armv7 193SNAP_MD_POST_DEPS+= smp_armv7
194.endif 194.endif
195 195
196.if !empty(MACHINE_ARCH:Maarch64) && empty(ALL_KERNELS) 196.if !empty(MACHINE_ARCH:Maarch64) && empty(ALL_KERNELS)