How do I know if my 13-stable has security patches?
Ed Maste
emaste at freebsd.org
Thu Feb 25 14:10:34 UTC 2021
On Thu, 25 Feb 2021 at 02:42, Kevin Oberman <rkoberman at gmail.com> wrote:
>
> Thanks, Ed, but where do I find this? uname -a" gives me stable/13-007101f87. For a while I was seeing a hyphenated number prefixed with a 'c' and I had assumed that that number was the sequence.
It is (was) - we changed from 'c' to avoid having it look like a hex value.
To generate (this part of) uname the build script runs:
if [ "$($git_cmd rev-parse --is-shallow-repository)" = false ] ; then
git_cnt=$($git_cmd rev-list --first-parent --count
HEAD 2>/dev/null)
if [ -n "$git_cnt" ] ; then
git="n${git_cnt}-${git}"
fi
fi
Would you try running, at the top of your stable/13 src tree:
git rev-parse --is-shallow-repository
git rev-list --first-parent --count HEAD
More information about the freebsd-stable
mailing list