git: 3efd090e4385 - stable/13 - development(7): Use a more common architecture for examples

From: Edward Tomasz Napierala <trasz_at_FreeBSD.org>
Date: Fri, 18 Feb 2022 15:10:25 UTC
The branch stable/13 has been updated by trasz:

URL: https://cgit.FreeBSD.org/src/commit/?id=3efd090e4385564b12d456c4b6284aa1516704c3

commit 3efd090e4385564b12d456c4b6284aa1516704c3
Author:     Edward Tomasz Napierala <trasz@FreeBSD.org>
AuthorDate: 2021-10-31 13:27:29 +0000
Commit:     Edward Tomasz Napierala <trasz@FreeBSD.org>
CommitDate: 2022-02-14 19:29:29 +0000

    development(7): Use a more common architecture for examples
    
    (cherry picked from commit e03813c3e1fd6aaac87eac3dd258cccb4238ed91)
---
 share/man/man7/development.7 | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/share/man/man7/development.7 b/share/man/man7/development.7
index a0459ccfad72..2c73c018c390 100644
--- a/share/man/man7/development.7
+++ b/share/man/man7/development.7
@@ -23,7 +23,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 19, 2021
+.Dd November 1, 2021
 .Dt DEVELOPMENT 7
 .Os
 .Sh NAME
@@ -157,20 +157,20 @@ for another CPU architecture,
 first prepare your source tree by building the cross-toolchain:
 .Bd -literal -offset indent
 cd src
-make -sj8 toolchain TARGET_ARCH=armv6
+make -sj8 toolchain TARGET_ARCH=aarch64
 .Ed
 .Pp
 Afterwards, to build and install a single piece of userspace, use:
 .Bd -literal -offset indent
 cd src/bin/ls
-make buildenv TARGET_ARCH=armv6
+make buildenv TARGET_ARCH=aarch64
 make clean all install DESTDIR=/clients/arm
 .Ed
 .Pp
 Likewise, to quickly rebuild and reinstall the kernel, use:
 .Bd -literal -offset indent
 cd src
-make buildenv TARGET_ARCH=armv6
+make buildenv TARGET_ARCH=aarch64
 make -sj8 kernel KERNFAST=1 DESTDIR=/clients/arm
 .Ed
 .Sh SEE ALSO