Home
last modified time | relevance | path

Searched full:documentation (Results 1 – 25 of 4304) sorted by relevance

12345678910>>...173

/Linux-v5.4/Documentation/doc-guide/
Dsphinx.rst6 The Linux kernel uses `Sphinx`_ to generate pretty documentation from
7 `reStructuredText`_ files under ``Documentation``. To build the documentation in
9 documentation is placed in ``Documentation/output``.
15 documentation comments, or kernel-doc comments, from source files. Usually these
20 Finally, there are thousands of plain text documentation files scattered around
21 ``Documentation``. Some of these will likely be converted to reStructuredText
29 The ReST markups currently used by the Documentation/ files are meant to be
37 on your machine would cause the documentation build to break.
62 (sphinx_1.7.9) $ pip install -r Documentation/sphinx/requirements.txt
67 the virtual environment before building the documentation.
[all …]
Dkernel-doc.rst4 The Linux kernel source files may contain structured documentation
6 and design of the code. It is easier to keep documentation up-to-date
26 It is good practice to also provide kernel-doc formatted documentation
29 documentation for private (file ``static``) routines, for consistency of
43 that somebody changing the code will also change the documentation. The
49 documentation comments. For example::
53 The documentation format is verified by the kernel build when it is
58 Function documentation
168 Structure, union, and enumeration documentation
200 area are not listed in the generated output documentation.
[all …]
/Linux-v5.4/Documentation/translations/zh_CN/process/
Dsubmit-checklist.rst3 :Original: :ref:`Documentation/process/submit-checklist.rst <submitchecklist>`
15 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
35 5) 如下所述 :ref:`Documentation/translations/zh_CN/process/coding-style.rst <cn_codingstyle>`.
41 它们符合 ``Documentation/kbuild/kconfig-language.rst`` 中记录的异常条件,
74 16) 所有新的/proc条目都记录在 ``Documentation/``
77 Documentation/admin-guide/kernel-parameters.rst 中。
81 19) 所有新的用户空间接口都记录在 ``Documentation/ABI/`` 中。有关详细信息,
82 请参阅 ``Documentation/ABI/README`` 。更改用户空间接口的补丁应该抄送
87 21) 已通过至少注入slab和page分配失败进行检查。请参阅 ``Documentation/fault-injection/``
100 25) 如果补丁添加了任何ioctl,那么也要更新 ``Documentation/ioctl/ioctl-number.rst``
Dhowto.rst5 :Original: :ref:`Documentation/process/howto.rst <process_howto>`
67 :ref:`Documentation/translations/zh_CN/process/license-rules.rst <cn_kernel_licensing>`
85 :ref:`Documentation/admin-guide/README.rst <readme>`
90 :ref:`Documentation/process/changes.rst <changes>`
93 :ref:`Documentation/translations/zh_CN/process/coding-style.rst <cn_codingstyle>`
98 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
99 :ref:`Documentation/process/submitting-drivers.rst <submittingdrivers>`
118 :ref:`Documentation/translations/zh_CN/process/stable-api-nonsense.rst <cn_stable_api_nonsense>`
129 :ref:`Documentation/admin-guide/security-bugs.rst <securitybugs>`
133 :ref:`Documentation/translations/zh_CN/process/management-style.rst <cn_managementstyle>`
[all …]
D5.Posting.rst3 :Original: :ref:`Documentation/process/5.Posting.rst <development_posting>`
15 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`,
16 :ref:`Documentation/process/submitting-drivers.rst <submittingdrivers>`
17 和 :ref:`Documentation/translations/zh_CN/process/submit-checklist.rst <cn_submitchecklist>`.
148 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
159 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
166 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
174 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
191 :ref:`Documentation/translations/zh_CN/process/email-clients.rst <cn_email_clients>`
D4.Coding.rst3 :Original: :ref:`Documentation/process/4.Coding.rst <development_coding>`
25 :ref:`Documentation/translations/zh_CN/process/coding-style.rst <cn_codingstyle>`
52 参阅文件 :ref:`Documentation/process/clang-format.rst <clangformat>`
208 Documentation/fault-injection/fault-injection.rst。
220 :ref:`Documentation/dev-tools/coccinelle.rst <devtools_coccinelle>`
244 Documentation/ABI/README,了解如何格式化此文档以及需要提供哪些信息。
246 文件 :ref:`Documentation/admin-guide/kernel-parameters.rst <kernelparameters>`
258 :ref:`Documentation/doc-guide/ <doc_guide>` 上找到。
/Linux-v5.4/
DMAINTAINERS38 See Documentation/process/coding-style.rst for guidance here.
44 See Documentation/process/submitting-patches.rst for details.
57 Documentation/process/submitting-patches.rst.
143 F: Documentation/networking/device_drivers/3com/vortex.txt
173 F: Documentation/networking/6lowpan.txt
211 F: Documentation/filesystems/9p.txt
233 F: Documentation/scsi/aacraid.txt
275 F: Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
276 F: Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
324 F: Documentation/firmware-guide/acpi/
[all …]
DREADME6 Documentation/admin-guide/README.rst first.
8 In order to build the documentation, use ``make htmldocs`` or
9 ``make pdfdocs``. The formatted documentation can also be read online at:
13 There are various text files in the Documentation/ subdirectory,
16 Please read the Documentation/process/changes.rst file, as it contains the
/Linux-v5.4/scripts/
Ddocumentation-file-ref-check4 # Treewide grep for references to files under Documentation, and report
12 # to mention a past documentation file, for example, to give credits for
15 "Documentation/scsi/scsi_mid_low_api.txt" => "Documentation/Configure.help",
16 "drivers/vhost/vhost.c" => "Documentation/virtual/lguest/lguest.c",
50 open IN, "git grep ':doc:\`' Documentation/|"
76 open IN, "git grep 'Documentation/'|"
93 # Ignore the dir where documentation will be built
94 next if ($ln =~ m,\b(\S*)Documentation/output,);
96 if ($ln =~ m,\b(\S*)(Documentation/[A-Za-z0-9\_\.\,\~/\*\[\]\?+-]*)(.*),) {
103 # /usr/src/linux/Documentation/DMA-{API,mapping}.txt
[all …]
/Linux-v5.4/Documentation/
Dindex.rst2 .. The Linux Kernel documentation master file, created by
9 The Linux Kernel documentation
12 This is the top level of the kernel's documentation tree. Kernel
13 documentation, like the kernel itself, is very much a work in progress;
16 documentation are welcome; join the linux-doc list at vger.kernel.org if
19 Licensing documentation
28 User-oriented documentation
40 Firmware-related documentation
50 Application-developer documentation
85 Kernel API documentation
[all …]
DMakefile2 # Makefile for Sphinx documentation
7 # Check for broken documentation file references
9 $(shell $(srctree)/scripts/documentation-file-ref-check --warn)
16 _SPHINXDIRS = $(patsubst $(srctree)/Documentation/%/conf.py,%,$(wildcard $(srctree)/Documentation
64 # e.g. "media" for the linux-tv book-set at ./Documentation/media
67 cmd_sphinx = $(MAKE) BUILDDIR=$(abspath $(BUILDDIR)) $(build)=Documentation/media $2 && \
118 $(Q)cd $(srctree);scripts/documentation-file-ref-check
122 $(Q)$(MAKE) BUILDDIR=$(abspath $(BUILDDIR)) $(build)=Documentation/media clean
125 @echo ' Linux kernel internal documentation in different formats from ReST:'
132 @echo ' refcheckdocs - check for references to non-existing files under Documentation'
[all …]
/Linux-v5.4/Documentation/devicetree/bindings/mmc/
Dsdhci-st.txt4 Documentation/devicetree/bindings/mmc/mmc.txt and the properties
14 See: Documentation/devicetree/bindings/resource-names.txt
16 See: Documentation/devicetree/bindings/clock/clock-bindings.txt
23 See: Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt
36 See: Documentation/devicetree/bindings/mmc/mmc.txt.
39 See: Documentation/devicetree/bindings/mmc/mmc.txt.
43 See: Documentation/devicetree/bindings/mmc/mmc.txt.
46 See: Documentation/devicetree/bindings/reset/reset.txt
52 See: Documentation/devicetree/bindings/mmc/mmc.txt.
55 See: Documentation/devicetree/bindings/mmc/mmc.txt.
[all …]
/Linux-v5.4/Documentation/devicetree/bindings/power/
Dwakeup-source.txt20 1. "enable-sdio-wakeup" Documentation/devicetree/bindings/mmc/mmc.txt
21 2. "gpio-key,wakeup" Documentation/devicetree/bindings/input/gpio-keys{,-polled}.txt
22 3. "has-tpo" Documentation/devicetree/bindings/rtc/rtc-opal.txt
23 4. "linux,wakeup" Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt
24 Documentation/devicetree/bindings/mfd/tc3589x.txt
25 Documentation/devicetree/bindings/input/touchscreen/ads7846.txt
26 5. "linux,keypad-wakeup" Documentation/devicetree/bindings/input/qcom,pm8xxx-keypad.txt
27 6. "linux,input-wakeup" Documentation/devicetree/bindings/input/samsung-keypad.txt
28 7. "nvidia,wakeup-source" Documentation/devicetree/bindings/input/nvidia,tegra20-kbc.txt
/Linux-v5.4/scripts/kconfig/tests/err_recursive_dep/
Dexpected_stderr3 For a resolution refer to Documentation/kbuild/kconfig-language.rst
8 For a resolution refer to Documentation/kbuild/kconfig-language.rst
14 For a resolution refer to Documentation/kbuild/kconfig-language.rst
20 For a resolution refer to Documentation/kbuild/kconfig-language.rst
26 For a resolution refer to Documentation/kbuild/kconfig-language.rst
31 For a resolution refer to Documentation/kbuild/kconfig-language.rst
37 For a resolution refer to Documentation/kbuild/kconfig-language.rst
/Linux-v5.4/drivers/cpufreq/
DKconfig.x8628 <file:Documentation/cpu-freq/pcc-cpufreq.txt>.
47 For details, take a look at <file:Documentation/cpu-freq/>.
84 For details, take a look at <file:Documentation/cpu-freq/>.
94 For details, take a look at <file:Documentation/cpu-freq/>.
106 For details, take a look at <file:Documentation/cpu-freq/>.
116 For details, take a look at <file:Documentation/cpu-freq/>.
137 For details, take a look at <file:Documentation/cpu-freq/>.
163 For details, take a look at <file:Documentation/cpu-freq/>.
182 For details, take a look at <file:Documentation/cpu-freq/>.
205 For details, take a look at <file:Documentation/cpu-freq/>.
[all …]
/Linux-v5.4/Documentation/scsi/
Dscsi-parameters.txt4 See Documentation/admin-guide/kernel-parameters.rst for general information on
19 See Documentation/scsi/aha152x.txt.
25 See Documentation/scsi/aic7xxx.txt.
28 See Documentation/scsi/aic79xx.txt.
60 See Documentation/scsi/g_NCR5380.txt.
63 See Documentation/scsi/g_NCR5380.txt.
66 See Documentation/scsi/g_NCR5380.txt.
72 See also Documentation/scsi/st.txt.
104 See Documentation/scsi/st.txt.
/Linux-v5.4/Documentation/process/
Dsubmit-checklist.rst9 These are all above and beyond the documentation that is provided in
10 :ref:`Documentation/process/submitting-patches.rst <submittingpatches>`
34 :ref:`Documentation/process/coding-style.rst <codingstyle>`.
42 ``Documentation/kbuild/kconfig-language.rst`` Menu attributes: default value.
77 17) All new ``/proc`` entries are documented under ``Documentation/``
80 ``Documentation/admin-guide/kernel-parameters.rst``.
84 20) All new userspace interfaces are documented in ``Documentation/ABI/``.
85 See ``Documentation/ABI/README`` for more information.
92 failures. See ``Documentation/fault-injection/``.
110 ``Documentation/ioctl/ioctl-number.rst``.
/Linux-v5.4/Documentation/devicetree/bindings/sound/
Dadi,adau1977.txt4 http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1977.pdf
5 http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1978.pdf
6 http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1979.pdf
17 Documentation/devicetree/bindings/regulator/regulator.txt
21 Documentation/devicetree/bindings/gpio/gpio.txt
24 Documentation/devicetree/bindings/regulator/regulator.txt
33 Documentation/devicetree/bindings/spi/spi-bus.txt
/Linux-v5.4/Documentation/translations/it_IT/process/
Dsubmit-checklist.rst3 :Original: :ref:`Documentation/process/submit-checklist.rst <submitchecklist>`
16 :ref:`Documentation/translations/it_IT/process/submitting-patches.rst <it_submittingpatches>`.
38 scritte in :ref:`Documentation/translations/it_IT/process/coding-style.rst <it_codingstyle>`.
46 soddisfino i criteri descritti in ``Documentation/kbuild/kconfig-language.rst``
86 16) Tutti i nuovi elementi in ``/proc`` sono documentati in ``Documentation/``.
89 ``Documentation/admin-guide/kernel-parameters.rst``.
94 ``Documentation/ABI/``. Leggete ``Documentation/ABI/README`` per maggiori
101 nell'allocazione di pagine. Vedere ``Documentation/fault-injection/``.
120 ``Documentation/ioctl/ioctl-number.rst``.
/Linux-v5.4/Documentation/devicetree/bindings/leds/
Dleds-gpio.txt11 Documentation/devicetree/bindings/gpio/gpio.txt. Active low LEDs should be
14 see Documentation/devicetree/bindings/leds/common.txt
16 see Documentation/devicetree/bindings/leds/common.txt
18 see Documentation/devicetree/bindings/leds/common.txt (deprecated)
20 see Documentation/devicetree/bindings/leds/common.txt
22 see Documentation/devicetree/bindings/leds/common.txt
29 see Documentation/devicetree/bindings/leds/common.txt
Dleds-aat1290.txt23 node - see Documentation/devicetree/bindings/leds/common.txt.
26 - led-max-microamp : see Documentation/devicetree/bindings/leds/common.txt
27 - flash-max-microamp : see Documentation/devicetree/bindings/leds/common.txt
30 - flash-max-timeout-us : see Documentation/devicetree/bindings/leds/common.txt
35 - function : see Documentation/devicetree/bindings/leds/common.txt
36 - color : see Documentation/devicetree/bindings/leds/common.txt
37 - label : see Documentation/devicetree/bindings/leds/common.txt (deprecated)
/Linux-v5.4/Documentation/driver-api/dmaengine/
Dindex.rst2 DMAEngine documentation
5 DMAEngine documentation provides documents for various aspects of DMAEngine
8 DMAEngine documentation
19 DMAEngine client documentation
30 DMA Test documentation
40 PXA DMA documentation
/Linux-v5.4/Documentation/translations/ja_JP/
DSubmitChecklist2 This is a version of Documentation/process/submit-checklist.rst into Japanese.
17 linux-2.6.26/Documentation/process/submit-checklist.rst の和訳です。
30 をいくつか紹介します。ここにある全ての事柄は、Documentation/process/submitting-patches.rst
79 15: /proc に新しいエントリを追加した場合には、Documentation/ 配下に
88 18: 新しいuserspaceインタフェースを作成した場合には、Documentation/ABI/ に
89 Documentation/ABI/README を参考にして必ずドキュメントを追加してください。
95 Documentation/fault-injection/ を参照してください。
/Linux-v5.4/Documentation/devicetree/bindings/
Dsubmitting-patches.txt6 0) Normal patch submission rules from Documentation/process/submitting-patches.rst
9 1) The Documentation/ and include/dt-bindings/ portion of the patch should
15 use "Documentation" or "doc" because that is implied. All bindings are
25 3) The Documentation/ portion of the patch should come in the series before
30 in Documentation/devicetree/bindings. This rule applies even if
34 ("checkpatch: add DT compatible string documentation checks"). ]
46 driver, the documentation should also include a compatible
/Linux-v5.4/Documentation/translations/
Dindex.rst24 documentation in their native language, but please bear in mind that the
25 *only* official documentation is the English one: :ref:`linux_doc`.
29 contributors - follow the evolution of the official documentation and they
34 documentation.
36 A translation is not a fork of the official documentation, therefore
38 English documentation. Any content addition, removal or update, must be

12345678910>>...173