freebsd-update: Clarify unsupported upgrade message

PR:		204115
Submitted by:	Gerald Aryeetey <aryeeteygerald_rogers.com>
Reviewed by:	delphij
MFC after:	1 month
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D18916
This commit is contained in:
Ed Maste 2019-01-24 18:51:15 +00:00
parent ed1b6cec4f
commit 9e8c28fcc0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=343411

View File

@ -1022,7 +1022,16 @@ fetch_pick_server () {
# Have we run out of mirrors?
if [ `wc -l < serverlist` -eq 0 ]; then
echo "No mirrors remaining, giving up."
cat <<- EOF
No mirrors remaining, giving up.
This may be because upgrading from this platform (${ARCH})
or release (${RELNUM}) is unsupported by `basename $0`. Only
platforms with Tier 1 support can be upgraded by `basename $0`.
See https://www.freebsd.org/platforms/index.html for more info.
If unsupported, FreeBSD must be upgraded by source.
EOF
return 1
fi