newvers.sh (9e98065cf17d0e4831928a5acbd7bc75a351c7f6) newvers.sh (a53ce3fc4938e37d5ec89304846203d2083c61a2)
1#!/bin/sh -
2#
3# SPDX-License-Identifier: BSD-3-Clause
4#
5# Copyright (c) 1984, 1986, 1990, 1993
6# The Regents of the University of California. All rights reserved.
7#
8# Redistribution and use in source and binary forms, with or without

--- 39 unchanged lines hidden (view full) ---

48#
49# -V var Print ${var}="${val-of-var}" and exit
50#
51# -v Print TYPE REVISION BRANCH RELEASE VERSION RELDATE variables
52# like the -V command
53#
54
55TYPE="FreeBSD"
1#!/bin/sh -
2#
3# SPDX-License-Identifier: BSD-3-Clause
4#
5# Copyright (c) 1984, 1986, 1990, 1993
6# The Regents of the University of California. All rights reserved.
7#
8# Redistribution and use in source and binary forms, with or without

--- 39 unchanged lines hidden (view full) ---

48#
49# -V var Print ${var}="${val-of-var}" and exit
50#
51# -v Print TYPE REVISION BRANCH RELEASE VERSION RELDATE variables
52# like the -V command
53#
54
55TYPE="FreeBSD"
56REVISION="13.0"
57BRANCH="ALPHA1"
56REVISION="14.0"
57BRANCH="CURRENT"
58if [ -n "${BRANCH_OVERRIDE}" ]; then
59 BRANCH=${BRANCH_OVERRIDE}
60fi
61RELEASE="${REVISION}-${BRANCH}"
62VERSION="${TYPE} ${RELEASE}"
63
64if [ -z "${SYSDIR}" ]; then
65 SYSDIR=$(dirname $0)/..

--- 248 unchanged lines hidden ---
58if [ -n "${BRANCH_OVERRIDE}" ]; then
59 BRANCH=${BRANCH_OVERRIDE}
60fi
61RELEASE="${REVISION}-${BRANCH}"
62VERSION="${TYPE} ${RELEASE}"
63
64if [ -z "${SYSDIR}" ]; then
65 SYSDIR=$(dirname $0)/..

--- 248 unchanged lines hidden ---