summaryrefslogtreecommitdiffstats
path: root/documentation/kernel-dev
diff options
context:
space:
mode:
authorUlrich Ölmann <u.oelmann@pengutronix.de>2023-02-13 15:35:57 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-02-24 15:43:24 +0000
commitff3624bb07c1b15b7b5a501e41da8700bbd92e8b (patch)
tree3053c0e1401967fb1162fc516fef4ccb35c75ccf /documentation/kernel-dev
parent197a6f6fbb7be892f4262944d5a6d76407740391 (diff)
downloadpoky-ff3624bb07c1b15b7b5a501e41da8700bbd92e8b.tar.gz
kernel-dev: harmonize example with ref-manual
(From yocto-docs rev: 02e8a7e25eda462a5e244bd2bfb557554c1155fb) Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> Reviewed-by: Quentin Schulz <foss+yocto@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/kernel-dev')
-rw-r--r--documentation/kernel-dev/common.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/kernel-dev/common.rst b/documentation/kernel-dev/common.rst
index 3c8e0b74e9..e0a85575c1 100644
--- a/documentation/kernel-dev/common.rst
+++ b/documentation/kernel-dev/common.rst
@@ -651,10 +651,10 @@ form::
651 651
652 KBUILD_DEFCONFIG:<machine> ?= "defconfig_file" 652 KBUILD_DEFCONFIG:<machine> ?= "defconfig_file"
653 653
654Here is an example 654Here is an example that assigns the :term:`KBUILD_DEFCONFIG` variable utilizing
655that assigns the :term:`KBUILD_DEFCONFIG` variable based on "raspberrypi2" 655an override for the "raspberrypi2" :term:`MACHINE` and provides the path to the
656and provides the path to the "in-tree" ``defconfig`` file to be used for 656"in-tree" ``defconfig`` file to be used for a Raspberry Pi 2, which is based on
657a Raspberry Pi 2, which is based on the Broadcom 2708/2709 chipset:: 657the Broadcom 2708/2709 chipset::
658 658
659 KBUILD_DEFCONFIG:raspberrypi2 ?= "bcm2709_defconfig" 659 KBUILD_DEFCONFIG:raspberrypi2 ?= "bcm2709_defconfig"
660 660