From owner-freebsd-stable@freebsd.org Thu Feb 25 14:10:34 2021 Return-Path: Delivered-To: freebsd-stable@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DEEC8564567 for ; Thu, 25 Feb 2021 14:10:34 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-io1-f47.google.com (mail-io1-f47.google.com [209.85.166.47]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DmZSV5ymwz4mw6 for ; Thu, 25 Feb 2021 14:10:34 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by mail-io1-f47.google.com with SMTP id 81so2314767iou.11 for ; Thu, 25 Feb 2021 06:10:34 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=p/PqF3jw9nsVskH4XTUfxTsw0Evup/fnjpT3rTVg9ZM=; b=GkuPFktqevFvyHG9c4liEJSBevxdZQFsoXEHIUvuYiz91LZR9CCt2oAhrt7WpU6fJs 5qvk+vrWMlx30KOXyxx1hYRfJGkLNjr7pxxBA7TKR/zr8sYTBihMwifCUaU6ArylNhim JZxyqXH035svVBtr3r4As3/6GN5eVaLQGjBtf7px7Og35sZ7bcox6rZcEksCZ6QOu6yx yy/k2hGemjhltihFECGKWCtqfdkIGSgqzWjAKGqjCZqbLjHCaCmB3YG8sDzcAb9CxWIF 7laJ0Xg+IP9FOwcDb9dAxeC8P0cpPCjL/3ZnV9NV+DFKim51WVV5bz5dxVovpcb1jTsH 6PRQ== X-Gm-Message-State: AOAM531xlhdS2i66uTJ/IBh9vaB7KJsxa9ctJ4e9MQv14DhiX3hQY9mB bC2EZ6IweGIcwpw7o6rkHQ30NaBBhyeO9ev/jVI= X-Google-Smtp-Source: ABdhPJwdrn3btZbjP7OR+07vT5TnDLN5BHssFw+zHuJ0krpdd7uAZK5kaYcjbZQa7vwmizm1Km6Oh2JRDULnrY0H5yQ= X-Received: by 2002:a6b:fc16:: with SMTP id r22mr2707073ioh.102.1614262233751; Thu, 25 Feb 2021 06:10:33 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: Ed Maste Date: Thu, 25 Feb 2021 09:10:15 -0500 Message-ID: Subject: Re: How do I know if my 13-stable has security patches? To: Kevin Oberman Cc: FreeBSD-STABLE Mailing List Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 4DmZSV5ymwz4mw6 X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Feb 2021 14:10:34 -0000 On Thu, 25 Feb 2021 at 02:42, Kevin Oberman 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