diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2021-08-04 20:15:37 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-14 12:04:23 +0100 |
commit | 80859f21b5ceea8efdc09d0f0de24cc70a749d48 (patch) | |
tree | eced0bb55c218f1a5496ba82de7d6aebf838be7e /documentation/kernel-dev/advanced.rst | |
parent | ded502d2a751a9c0b0a0ed4e2076fa65ca9e803a (diff) | |
download | poky-80859f21b5ceea8efdc09d0f0de24cc70a749d48.tar.gz |
kernel-dev manual: overrides syntax updates
Updated with openembedded-core/scripts/contrib/convert-overrides.py
(From yocto-docs rev: d4598b592d1b0c9ce9448a8858eb4f47d83487b2)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/kernel-dev/advanced.rst')
-rw-r--r-- | documentation/kernel-dev/advanced.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/kernel-dev/advanced.rst b/documentation/kernel-dev/advanced.rst index 871ec8ae7b..9c3a478cb9 100644 --- a/documentation/kernel-dev/advanced.rst +++ b/documentation/kernel-dev/advanced.rst | |||
@@ -69,7 +69,7 @@ to indicate the branch. | |||
69 | You can use the :term:`KBRANCH` value to define an alternate branch typically | 69 | You can use the :term:`KBRANCH` value to define an alternate branch typically |
70 | with a machine override as shown here from the ``meta-yocto-bsp`` layer:: | 70 | with a machine override as shown here from the ``meta-yocto-bsp`` layer:: |
71 | 71 | ||
72 | KBRANCH_edgerouter = "standard/edgerouter" | 72 | KBRANCH:edgerouter = "standard/edgerouter" |
73 | 73 | ||
74 | 74 | ||
75 | The linux-yocto style recipes can optionally define the following | 75 | The linux-yocto style recipes can optionally define the following |
@@ -113,7 +113,7 @@ To include a | |||
113 | feature called "cfg/sound.scc" just for the ``qemux86`` machine, | 113 | feature called "cfg/sound.scc" just for the ``qemux86`` machine, |
114 | specify:: | 114 | specify:: |
115 | 115 | ||
116 | KERNEL_FEATURES_append_qemux86 = " cfg/sound.scc" | 116 | KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc" |
117 | 117 | ||
118 | The value of | 118 | The value of |
119 | the entries in :term:`KERNEL_FEATURES` are dependent on their location | 119 | the entries in :term:`KERNEL_FEATURES` are dependent on their location |
@@ -724,7 +724,7 @@ If the BSP description is in recipe space, you cannot simply list the | |||
724 | ``*.scc`` in the :term:`SRC_URI` statement. You need to use the following | 724 | ``*.scc`` in the :term:`SRC_URI` statement. You need to use the following |
725 | form from your kernel append file:: | 725 | form from your kernel append file:: |
726 | 726 | ||
727 | SRC_URI_append_myplatform = " \ | 727 | SRC_URI:append_myplatform = " \ |
728 | file://myplatform;type=kmeta;destsuffix=myplatform \ | 728 | file://myplatform;type=kmeta;destsuffix=myplatform \ |
729 | " | 729 | " |
730 | 730 | ||