summaryrefslogtreecommitdiffstats
path: root/documentation/kernel-dev/maint-appx.rst
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-12-09 19:01:55 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-18 10:41:21 +0000
commit6846d4d00bc3a9d4e188ad9c8cfdf6e45cd1ba06 (patch)
tree6a59e9936ac9f2ca063d4fc8a5c4d9ecc9492769 /documentation/kernel-dev/maint-appx.rst
parent474e071608c7c1c97e9dafde810aef5630c716e7 (diff)
downloadpoky-6846d4d00bc3a9d4e188ad9c8cfdf6e45cd1ba06.tar.gz
manuals: define proper numbered lists
Using "#." instead of "1.", "2.", "3.", etc. (From yocto-docs rev: 11c2585acd0fa6c330702af2359ce5a9e47cde1f) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reported-by: Quentin Schulz <foss+yocto@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/kernel-dev/maint-appx.rst')
-rw-r--r--documentation/kernel-dev/maint-appx.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/documentation/kernel-dev/maint-appx.rst b/documentation/kernel-dev/maint-appx.rst
index 6aa2fb7cf1..53b7376089 100644
--- a/documentation/kernel-dev/maint-appx.rst
+++ b/documentation/kernel-dev/maint-appx.rst
@@ -92,11 +92,11 @@ top-level kernel feature or BSP. The following actions effectively
92provide the Metadata and create the tree that includes the new feature, 92provide the Metadata and create the tree that includes the new feature,
93patch, or BSP: 93patch, or BSP:
94 94
951. *Pass Feature to the OpenEmbedded Build System:* A top-level kernel 95#. *Pass Feature to the OpenEmbedded Build System:* A top-level kernel
96 feature is passed to the kernel build subsystem. Normally, this 96 feature is passed to the kernel build subsystem. Normally, this
97 feature is a BSP for a particular kernel type. 97 feature is a BSP for a particular kernel type.
98 98
992. *Locate Feature:* The file that describes the top-level feature is 99#. *Locate Feature:* The file that describes the top-level feature is
100 located by searching these system directories: 100 located by searching these system directories:
101 101
102 - The in-tree kernel-cache directories, which are located in the 102 - The in-tree kernel-cache directories, which are located in the
@@ -112,31 +112,31 @@ patch, or BSP:
112 112
113 bsp_root_name-kernel_type.scc 113 bsp_root_name-kernel_type.scc
114 114
1153. *Expand Feature:* Once located, the feature description is either 115#. *Expand Feature:* Once located, the feature description is either
116 expanded into a simple script of actions, or into an existing 116 expanded into a simple script of actions, or into an existing
117 equivalent script that is already part of the shipped kernel. 117 equivalent script that is already part of the shipped kernel.
118 118
1194. *Append Extra Features:* Extra features are appended to the top-level 119#. *Append Extra Features:* Extra features are appended to the top-level
120 feature description. These features can come from the 120 feature description. These features can come from the
121 :term:`KERNEL_FEATURES` 121 :term:`KERNEL_FEATURES`
122 variable in recipes. 122 variable in recipes.
123 123
1245. *Locate, Expand, and Append Each Feature:* Each extra feature is 124#. *Locate, Expand, and Append Each Feature:* Each extra feature is
125 located, expanded and appended to the script as described in step 125 located, expanded and appended to the script as described in step
126 three. 126 three.
127 127
1286. *Execute the Script:* The script is executed to produce files 128#. *Execute the Script:* The script is executed to produce files
129 ``.scc`` and ``.cfg`` files in appropriate directories of the 129 ``.scc`` and ``.cfg`` files in appropriate directories of the
130 ``yocto-kernel-cache`` repository. These files are descriptions of 130 ``yocto-kernel-cache`` repository. These files are descriptions of
131 all the branches, tags, patches and configurations that need to be 131 all the branches, tags, patches and configurations that need to be
132 applied to the base Git repository to completely create the source 132 applied to the base Git repository to completely create the source
133 (build) branch for the new BSP or feature. 133 (build) branch for the new BSP or feature.
134 134
1357. *Clone Base Repository:* The base repository is cloned, and the 135#. *Clone Base Repository:* The base repository is cloned, and the
136 actions listed in the ``yocto-kernel-cache`` directories are applied 136 actions listed in the ``yocto-kernel-cache`` directories are applied
137 to the tree. 137 to the tree.
138 138
1398. *Perform Cleanup:* The Git repositories are left with the desired 139#. *Perform Cleanup:* The Git repositories are left with the desired
140 branches checked out and any required branching, patching and tagging 140 branches checked out and any required branching, patching and tagging
141 has been performed. 141 has been performed.
142 142