git: b8788e696d - main - Update freebsd-update section to reference upgrading 13.1 to 13.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 11 Apr 2023 22:40:42 UTC
The branch main has been updated by allanjude: URL: https://cgit.FreeBSD.org/doc/commit/?id=b8788e696dfd962038728265fa99519377107f00 commit b8788e696dfd962038728265fa99519377107f00 Author: Allan Jude <allanjude@FreeBSD.org> AuthorDate: 2023-04-11 22:39:00 +0000 Commit: Allan Jude <allanjude@FreeBSD.org> CommitDate: 2023-04-11 22:39:00 +0000 Update freebsd-update section to reference upgrading 13.1 to 13.2 Sponsored By: Klara, Inc. --- .../content/en/books/handbook/cutting-edge/_index.adoc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/documentation/content/en/books/handbook/cutting-edge/_index.adoc b/documentation/content/en/books/handbook/cutting-edge/_index.adoc index e2e28b1eef..617b717c18 100644 --- a/documentation/content/en/books/handbook/cutting-edge/_index.adoc +++ b/documentation/content/en/books/handbook/cutting-edge/_index.adoc @@ -257,11 +257,11 @@ If the system is running a custom kernel, make sure that a copy of the [.filenam Refer to <<freebsd-update-custom-kernel-9x>> for instructions on how to get a copy of the [.filename]#GENERIC# kernel. ==== -The following command, when run on a FreeBSD 13.0 system, will upgrade it to FreeBSD 13.1: +The following command, when run on a FreeBSD 13.1 system, will upgrade it to FreeBSD 13.2: [source,shell] .... -# freebsd-update -r 13.1-RELEASE upgrade +# freebsd-update -r 13.2-RELEASE upgrade .... After the command has been received, `freebsd-update` will evaluate the configuration file and current system in an attempt to gather the information necessary to perform the upgrade. @@ -271,7 +271,7 @@ For example: [source,shell] .... Looking up update.FreeBSD.org mirrors... 1 mirrors found. -Fetching metadata signature for 13.0-RELEASE from update1.FreeBSD.org... done. +Fetching metadata signature for 13.2-RELEASE from update1.FreeBSD.org... done. Fetching metadata index... done. Inspecting system... done. @@ -296,7 +296,7 @@ When using a custom kernel, the above step will produce a warning similar to the [source,shell] .... WARNING: This system is running a "MYKERNEL" kernel, which is not a -kernel configuration distributed as part of FreeBSD 13.0-RELEASE. +kernel configuration distributed as part of FreeBSD 13.1-RELEASE. This kernel will not be updated: you MUST update the kernel manually before running "/usr/sbin/freebsd-update install" .... @@ -794,16 +794,16 @@ Determine which version of FreeBSD is being used with man:uname[1]: [source,shell] .... # uname -r -13.1-RELEASE +13.2-RELEASE .... -Based on <<updating-src-obtaining-src-repopath>>, the source used to update `13.1-RELEASE` has a repository path of `releng/13.1`. +Based on <<updating-src-obtaining-src-repopath>>, the source used to update `13.2-RELEASE` has a repository path of `releng/13.2`. That path is used when checking out the source: [source,shell] .... # mv /usr/src /usr/src.bak <.> -# git clone --branch releng/13.1 https://git.FreeBSD.org/src.git /usr/src <.> +# git clone --branch releng/13.2 https://git.FreeBSD.org/src.git /usr/src <.> .... <.> Move the old directory out of the way. If there are no local modifications in this directory, it can be deleted.