Skip to content

Commit 4697a92

Browse files
Mattijs Korpershoekpraneethbajjuri
authored andcommitted
feat(android): kernel: Reindent implicit numbered list
For numbering to behave properly when a new paragraph is inserted, implicit lists should be indented. Reindent the list that describes how to add a new kernel module. Signed-off-by: Mattijs Korpershoek <[email protected]>
1 parent 9e0792b commit 4697a92

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

source/android/Foundational_Components_Kernel.rst

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -132,30 +132,30 @@ new drivers should always be added as **modules**.
132132

133133
To enable new modules:
134134

135-
#. Run ``menuconfig`` as documented previously, Select ``=m`` for the driver.
135+
#. Run ``menuconfig`` as documented previously, Select ``=m`` for the driver.
136136

137-
#. Edit :file:`${YOUR_PATH}/ti-kernel-aosp/BUILD.bazel` to add your new module.
138-
Look for the following section:
137+
#. Edit :file:`${YOUR_PATH}/ti-kernel-aosp/BUILD.bazel` to add your new module.
138+
Look for the following section:
139139

140-
.. code-block:: bash
140+
.. code-block:: bash
141141
142-
_TI_MODULE_OUTS = [
143-
# keep sorted
144-
"crypto/af_alg.ko",
145-
"crypto/algif_hash.ko",
142+
_TI_MODULE_OUTS = [
143+
# keep sorted
144+
"crypto/af_alg.ko",
145+
"crypto/algif_hash.ko",
146146
147-
#. In the ``_TI_MODULE_OUTS`` array, add the path to your new kernel module.
147+
#. In the ``_TI_MODULE_OUTS`` array, add the path to your new kernel module.
148148
149-
#. Rebuild the kernel as documented in :ref:`android-build-kernel`.
149+
#. Rebuild the kernel as documented in :ref:`android-build-kernel`.
150150
151-
#. If the driver module needs to be loaded early (in the ramdisk), edit
152-
:file:`${YOUR_PATH}/ti-aosp-15/device/ti/am62x/BoardConfig-common.mk`
153-
and add the path to your module:
151+
#. If the driver module needs to be loaded early (in the ramdisk), edit
152+
:file:`${YOUR_PATH}/ti-aosp-15/device/ti/am62x/BoardConfig-common.mk`
153+
and add the path to your module:
154154
155-
.. code-block:: make
155+
.. code-block:: make
156156
157-
BOARD_VENDOR_RAMDISK_KERNEL_MODULES += \
158-
device/ti/am62x-kernel/kernel/$(TARGET_KERNEL_USE)/your_module.ko
157+
BOARD_VENDOR_RAMDISK_KERNEL_MODULES += \
158+
device/ti/am62x-kernel/kernel/$(TARGET_KERNEL_USE)/your_module.ko
159159
160-
#. Finally, rebuild the Android images.
160+
#. Finally, rebuild the Android images.
161161

0 commit comments

Comments
 (0)