Fix the ftp-stage target for RPI3 images by loosening the

constraints on the TARGET and TARGET_ARCH variables.

MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2017-07-05 16:55:45 +00:00
parent 1a01f934bf
commit b18ebc9201
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=320686

View file

@ -21,7 +21,7 @@ STAGE_TARGETS?= iso-images-stage
.endif .endif
.if (defined(EMBEDDED_TARGET) && !empty(EMBEDDED_TARGET)) || (defined(EMBEDDEDBUILD) && !empty(EMBEDDEDBUILD)) .if (defined(EMBEDDED_TARGET) && !empty(EMBEDDED_TARGET)) || (defined(EMBEDDEDBUILD) && !empty(EMBEDDEDBUILD))
. if ${TARGET} == "arm" || ${EMBEDDED_TARGET} == "arm" . if ${TARGET:Marm*} != "" || ${EMBEDDED_TARGET:Marm*} != ""
EMBEDDED= 1 EMBEDDED= 1
. endif . endif
.endif .endif
@ -57,7 +57,7 @@ TLD?= ${FTPDIR}/releases
.endif .endif
.if defined(EMBEDDED) && !empty(EMBEDDED) .if defined(EMBEDDED) && !empty(EMBEDDED)
. if ${TARGET} == "arm" && ${TARGET_ARCH} == "armv6" . if ${TARGET:Marm*} != "" && (${TARGET_ARCH} == "armv6" || ${TARGET_ARCH} == "aarch64")
. if !defined(BOARDNAME) && empty(BOARDNAME) . if !defined(BOARDNAME) && empty(BOARDNAME)
BOARDNAME:= ${KERNCONF} BOARDNAME:= ${KERNCONF}
. else . else