Add the initial draft of the 12.1-RELEASE cycle schedule and
index page for 12.1-RELEASE. Approved by: re (implicit) Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
117559a649
commit
e409631566
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=53019
13 changed files with 1067 additions and 0 deletions
80
en_US.ISO8859-1/htdocs/releases/12.1R/Makefile
Normal file
80
en_US.ISO8859-1/htdocs/releases/12.1R/Makefile
Normal file
|
@ -0,0 +1,80 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.if exists(../Makefile.conf)
|
||||
.include "../Makefile.conf"
|
||||
.endif
|
||||
.if exists(../Makefile.inc)
|
||||
.include "../Makefile.inc"
|
||||
.endif
|
||||
.if exists(Makefile.hardware)
|
||||
.include "Makefile.hardware"
|
||||
.endif
|
||||
|
||||
RELN_ROOT?= ${.CURDIR}
|
||||
|
||||
DOCS= index.xml \
|
||||
schedule.xml
|
||||
|
||||
DATA= docbook.css
|
||||
|
||||
#SUBDIR= errata readme relnotes installation
|
||||
|
||||
#.if exists(${SVN})
|
||||
#SUBDIR+=hardware
|
||||
#.endif
|
||||
|
||||
# PGP-signed checksums
|
||||
|
||||
_BIGIRON?= amd64 \
|
||||
i386 \
|
||||
powerpc \
|
||||
powerpc-powerpc64 \
|
||||
powerpc-powerpcspe \
|
||||
sparc64 \
|
||||
arm64-aarch64
|
||||
|
||||
_VMS?= amd64 \
|
||||
i386 \
|
||||
arm64-aarch64
|
||||
|
||||
_ARM_ARMV6?= RPI-B
|
||||
|
||||
_ARM_ARMV7?= BANANAPI \
|
||||
BEAGLEBONE \
|
||||
CUBIEBOARD \
|
||||
CUBIEBOARD2 \
|
||||
CUBOX-HUMMINGBOARD \
|
||||
GENERICSD \
|
||||
PANDABOARD \
|
||||
RPI2 \
|
||||
WANDBOARD
|
||||
|
||||
_ARM64_AARCH64?=PINE64 \
|
||||
PINE64-LTS \
|
||||
RPI3
|
||||
|
||||
# Do not look for checksums if BRANCH != RC* or RELEASE.
|
||||
# Special handling will be needed for cases where BRANCH
|
||||
# is RELEASE-pNN, for example, the 11.0-RELEASE really being
|
||||
# 11.0-RELEASE-p1.
|
||||
.if (${_BRANCH:MRC*} != "" || ${_BRANCH:MRELEASE} != "")
|
||||
.for CHECKSUM in SHA512 SHA256
|
||||