aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2021-03-29 20:13:23 +0000
committerRene Ladan <rene@FreeBSD.org>2021-03-29 20:22:28 +0000
commit5825ab58f756325ee2f2f3f9e253149afa740d8a (patch)
treec611d1121b46c2168aed7f2038eb34b5f7f02997
parenteb3164de992bd5c49f5916d6ba283f0ca02700a9 (diff)
downloaddoc-5825ab58f756325ee2f2f3f9e253149afa740d8a.tar.gz
doc-5825ab58f756325ee2f2f3f9e253149afa740d8a.zip
Porters Handbook: bump some FreeBSD versions in the Testing chapter.
CURRENT is now at 14.0 and 11.3 is no longer supported, so use 11.4.
-rw-r--r--documentation/content/en/books/porters-handbook/testing/chapter.adoc16
1 files changed, 8 insertions, 8 deletions
diff --git a/documentation/content/en/books/porters-handbook/testing/chapter.adoc b/documentation/content/en/books/porters-handbook/testing/chapter.adoc
index 0da30c0b46..04c0f6f248 100644
--- a/documentation/content/en/books/porters-handbook/testing/chapter.adoc
+++ b/documentation/content/en/books/porters-handbook/testing/chapter.adoc
@@ -196,10 +196,10 @@ Create the base jails which Poudriere will use for building:
[source,shell]
....
-# poudriere jail -c -j 113Ramd64 -v 11.3-RELEASE -a amd64
+# poudriere jail -c -j 113Ramd64 -v 11.4-RELEASE -a amd64
....
-Fetch a `11.3-RELEASE` for `amd64` from the FTP server given by `FREEBSD_HOST` in [.filename]#poudriere.conf#, create the zfs file system `tank/poudriere/jails/113Ramd64`, mount it on [.filename]#/poudriere/jails/113Ramd64# and extract the `11.3-RELEASE` tarballs into this file system.
+Fetch a `11.4-RELEASE` for `amd64` from the FTP server given by `FREEBSD_HOST` in [.filename]#poudriere.conf#, create the zfs file system `tank/poudriere/jails/113Ramd64`, mount it on [.filename]#/poudriere/jails/113Ramd64# and extract the `11.4-RELEASE` tarballs into this file system.
[source,shell]
....
@@ -222,19 +222,19 @@ If a specific Subversion revision is needed, append it to the version string. Fo
[NOTE]
====
-While it is possible to build a newer version of FreeBSD on an older version, most of the time it will not run. For example, if a `stable/11` jail is needed, the host will have to run `stable/11` too. Running `11.3-RELEASE` is not enough.
+While it is possible to build a newer version of FreeBSD on an older version, most of the time it will not run. For example, if a `stable/11` jail is needed, the host will have to run `stable/11` too. Running `11.4-RELEASE` is not enough.
====
[NOTE]
====
-To create a Poudriere jail for `13.0-CURRENT`:
+To create a Poudriere jail for `14.0-CURRENT`:
[source,shell]
....
# poudriere jail -c -j 13amd64 -v head -a amd64 -m svn+https
....
-In order to run a `13.0-CURRENT` Poudriere jail you must be running `13.0-CURRENT`. In general, newer kernels can build and run older jails. For instance, a `13.0-CURRENT` kernel can build and run a `11.3-STABLE` Poudriere jail if the `COMPAT_FREEBSD11` kernel option was compiled in (on by default in `13.0-CURRENT`[.filename]#GENERIC# kernel config).
+In order to run a `14.0-CURRENT` Poudriere jail you must be running `14.0-CURRENT`. In general, newer kernels can build and run older jails. For instance, a `14.0-CURRENT` kernel can build and run a `11.4-STABLE` Poudriere jail if the `COMPAT_FREEBSD11` kernel option was compiled in (on by default in `14.0-CURRENT`[.filename]#GENERIC# kernel config).
====
[CAUTION]
@@ -249,8 +249,8 @@ A list of jails currently known to Poudriere can be shown with `poudriere jail -
....
# poudriere jail -l
JAILNAME VERSION ARCH METHOD
-113Ramd64 11.3-RELEASE amd64 ftp
-11i386 11.3-STABLE i386 svn+https
+114Ramd64 11.4-RELEASE amd64 ftp
+11i386 11.4-STABLE i386 svn+https
....
[[testing-poudriere-maintaining-jails]]
@@ -376,7 +376,7 @@ Ports trees without a method, see <<testing-poudriere-ports-tree-manual>>, canno
After jails and ports trees have been set up, the result of a contributor's modifications to the ports tree can be tested.
-For example, local modifications to the package:www/firefox[] port located in [.filename]#/work/ports/www/firefox# can be tested in the previously created 11.3-RELEASE jail:
+For example, local modifications to the package:www/firefox[] port located in [.filename]#/work/ports/www/firefox# can be tested in the previously created 11.4-RELEASE jail:
[source,shell]
....