2015-04-01 00:00:17 +00:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Makefile for creating an EC2 AMI from a disk image.
|
|
|
|
#
|
|
|
|
|
2015-06-25 13:40:00 +00:00
|
|
|
.if ${BRANCH} == "CURRENT" || ${BRANCH} == "STABLE" || ${BRANCH} == "PRERELEASE"
|
2020-08-12 16:25:25 +00:00
|
|
|
AMINAMESUFFIX!= date +-${BUILDDATE}
|
2015-04-01 00:00:17 +00:00
|
|
|
.endif
|
2018-07-17 23:16:05 +00:00
|
|
|
.if defined(EC2PUBLIC) && !empty(EC2PUBLIC)
|
2015-04-01 00:00:17 +00:00
|
|
|
PUBLISH= --public
|
|
|
|
.endif
|
2018-08-06 19:21:32 +00:00
|
|
|
.if defined(EC2PUBLICSNAP) && !empty(EC2PUBLICSNAP)
|
2018-08-07 00:51:49 +00:00
|
|
|
PUBLICSNAP= --publicsnap
|
2018-08-06 19:21:32 +00:00
|
|
|
.endif
|
2018-07-17 23:16:05 +00:00
|
|
|
.if defined(EC2SNSTOPIC) && !empty(EC2SNSTOPIC)
|
2018-07-17 19:05:30 +00:00
|
|
|
EC2SNSREL= ${REVISION}-${BRANCH}
|
Makefile.inc1:
- New file. Adds logic to search for the git binary, as well
as determining the branch and revision, used in various
places.
Makefile:
- Remove searching for the svn{,lite} binary.
Makefile.ec2:
- Reduce duplicated code, removing searching for the svn{,lite}
binary, in addition to EC2_SVN{BRANCH,REV}.
- Rename EC2_SVN* with GIT* for consistency.
Makefile.mirrors:
- Remove the SRCBRANCH declaration, replaced with the exported
GITBRANCH variable.
- Update _SNAP_SUFFIX from SVNREVISION to GITREV, and remove
the leading 'r' from it, since it will break git hashes.
- Remove yet another instance of duplicated code to search for
the svn{,version}lite binary.
Sponsored by: Rubicon Communications, LLC (netgate.com)
2020-07-16 20:34:26 +00:00
|
|
|
EC2SNSVERS= ${GITBRANCH}@${GITREV}
|
2018-07-17 19:05:30 +00:00
|
|
|
.endif
|
2021-08-27 00:54:53 +00:00
|
|
|
.if defined(SSMPREFIX) && !empty(SSMPREFIX)
|
|
|
|
SSMOPTS= --ssm-name ${SSMPREFIX}/${TARGET_ARCH:S/aarch64/arm64/}/base/ufs/${REVISION}/${BRANCH}
|
|
|
|
.endif
|
2019-03-20 07:19:09 +00:00
|
|
|
.if ${TARGET_ARCH} != "amd64"
|
|
|
|
EC2ARCH= --${TARGET_ARCH:S/aarch64/arm64/}
|
|
|
|
.endif
|
2021-09-16 02:15:44 +00:00
|
|
|
.if !defined(AMIBOOTMETHOD)
|
|
|
|
AMIBOOTMETHOD= UEFI
|
|
|
|
.endif
|
|
|
|
.if ${AMIBOOTMETHOD} == "UEFI" && ${TARGET_ARCH} == "amd64"
|
|
|
|
BOOTMODEOPT= --uefi
|
|
|
|
.endif
|
2015-04-01 00:00:17 +00:00
|
|
|
|
2015-05-04 15:04:39 +00:00
|
|
|
CLEANFILES+= ec2ami
|
|
|
|
|
|
|
|
.if !exists(/usr/local/bin/bsdec2-image-upload)
|
|
|
|
CW_EC2_PORTINSTALL= cw-ec2-portinstall
|
|
|
|
CLEANFILES+= ${CW_EC2_PORTINSTALL}
|
|
|
|
.else
|
|
|
|
CW_EC2_PORTINSTALL=
|
|
|
|
.endif
|
|
|
|
|
2015-04-27 21:38:12 +00:00
|
|
|
cw-ec2-portinstall:
|
|
|
|
.if exists(${PORTSDIR}/net/bsdec2-image-upload/Makefile)
|
2021-03-04 14:22:45 +00:00
|
|
|
env - UNAME_r=${UNAME_r} PATH=$$PATH make -C ${PORTSDIR}/net/bsdec2-image-upload BATCH=1 all install clean
|
2015-04-27 21:38:12 +00:00
|
|
|
.else
|
|
|
|
. if !exists(/usr/local/sbin/pkg-static)
|
|
|
|
env ASSUME_ALWAYS_YES=yes pkg bootstrap -y
|
|
|
|
. endif
|
|
|
|
env ASSUME_ALWAYS_YES=yes pkg install -y net/bsdec2-image-upload
|
2015-04-01 00:00:17 +00:00
|
|
|
.endif
|
2015-05-04 15:04:39 +00:00
|
|
|
@touch ${.TARGET}
|
2015-04-27 21:38:12 +00:00
|
|
|
|
2015-05-04 15:04:39 +00:00
|
|
|
ec2ami: cw-ec2 ${CW_EC2_PORTINSTALL}
|
2015-04-01 00:00:17 +00:00
|
|
|
.if !defined(AWSKEYFILE) || !exists(${AWSKEYFILE})
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo ">>> AWSKEYFILE must point at AWS keys for EC2 AMI creation"
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@false
|
|
|
|
.endif
|
|
|
|
.if !defined(AWSREGION)
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo ">>> AWSREGION must be specified EC2 AMI creation"
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@false
|
|
|
|
.endif
|
|
|
|
.if !defined(AWSBUCKET)
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo ">>> AWSBUCKET must be specified for EC2 AMI creation"
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@false
|
|
|
|
.endif
|
2019-03-20 07:19:09 +00:00
|
|
|
/usr/local/bin/bsdec2-image-upload ${PUBLISH} ${PUBLICSNAP} \
|
2021-09-16 02:15:44 +00:00
|
|
|
${EC2ARCH} ${SSMOPTS} ${BOOTMODEOPT} --sriov --ena \
|
2015-06-02 17:00:31 +00:00
|
|
|
${.OBJDIR}/ec2.raw \
|
2021-09-16 02:15:44 +00:00
|
|
|
"${TYPE} ${REVISION}-${BRANCH}-${TARGET}${AMINAMESUFFIX} ${AMIBOOTMETHOD}" \
|
Makefile.inc1:
- New file. Adds logic to search for the git binary, as well
as determining the branch and revision, used in various
places.
Makefile:
- Remove searching for the svn{,lite} binary.
Makefile.ec2:
- Reduce duplicated code, removing searching for the svn{,lite}
binary, in addition to EC2_SVN{BRANCH,REV}.
- Rename EC2_SVN* with GIT* for consistency.
Makefile.mirrors:
- Remove the SRCBRANCH declaration, replaced with the exported
GITBRANCH variable.
- Update _SNAP_SUFFIX from SVNREVISION to GITREV, and remove
the leading 'r' from it, since it will break git hashes.
- Remove yet another instance of duplicated code to search for
the svn{,version}lite binary.
Sponsored by: Rubicon Communications, LLC (netgate.com)
2020-07-16 20:34:26 +00:00
|
|
|
"${TYPE}/${TARGET} ${GITBRANCH}@${GITREV}" \
|
2018-07-17 19:05:30 +00:00
|
|
|
${AWSREGION} ${AWSBUCKET} ${AWSKEYFILE} \
|
|
|
|
${EC2SNSTOPIC} ${EC2SNSREL} ${EC2SNSVERS}
|
2015-05-04 15:04:39 +00:00
|
|
|
@touch ${.TARGET}
|