Solved Unable to update from FreeBSD 14.2-p5 to 14.2-p6

I want to update from FreeBSD 14.2-p5 to 14.2-p6 according to the Errata Notice. However, the result of running freebsd-update is the message: "No updates needed to update the system to 14.2-RELEASE-p5". Why doesn't freebsd-update offer an update to the latest patch 14.2-p6?
 
Strange. I'm experiencing the same. Indeed, where is 14.2-RELEASE-p6?

14.2-p6 according to the Errata Notice.
Errata Notice :
Code:
2025-09-16 16:31:17 UTC (releng/14.2, 14.2-RELEASE-p6)

On my 14.2-RELEASE. Before:
Code:
 % freebsd-version -kru
14.2-RELEASE-p1
14.2-RELEASE-p1
14.2-RELEASE-p4

After freebsd-update fetch and subsequent install:
Code:
# freebsd-version -kru
14.2-RELEASE-p1
14.2-RELEASE-p1
14.2-RELEASE-p5
# freebsd-update fetch
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching metadata signature for 14.2-RELEASE from update1.freebsd.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

No updates needed to update system to 14.2-RELEASE-p5.
# date -u; uname -ab
Sun Sep 21 09:45:23 UTC 2025
FreeBSD q210 14.2-RELEASE-p1 FreeBSD 14.2-RELEASE-p1 GENERIC amd64 4f4b013afe2a58c0ded02e093c401357cee2e3cf

(reboot doesn't change that either)
 
Right, it's arm64 only. All on amd64 will not be getting a 'p6' via binary updates.
The complete name & URL of the EN, dated 2025-09-16, is FreeBSD-EN-25:15.arm64:
Rich (BB code):
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

=============================================================================
FreeBSD-EN-25:15.arm64                                          Errata Notice
                                                          The FreeBSD Project

Topic:          arm64 syscall(2) allows unprivileged user to panic kernel

Category:       core
Module:         arm64
Announced:      2025-09-16
Credits:        Juniper Networks, Inc.
Affects:        All supported versions of FreeBSD.
Corrected:      2025-08-25 15:23:01 UTC (stable/14, 14.3-STABLE)
                2025-09-16 16:31:06 UTC (releng/14.3, 14.3-RELEASE-p3)
                2025-09-16 16:31:17 UTC (releng/14.2, 14.2-RELEASE-p6)
                2025-08-25 15:23:22 UTC (stable/13, 13.5-STABLE)
                2025-09-16 16:31:26 UTC (releng/13.5, 13.5-RELEASE-p4)
   [...]

However, if one builds from source, then I expect you do get a 'p6', because, releng/14.2 - newvers.sh:
Code:
TYPE="FreeBSD"
REVISION="14.2"
BRANCH="RELEASE-p6"
 
Back
Top