Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

docs-rst: create a book for the development process

Now that the files at Documentation/development-process/
were converted to ReST, make create a book at Sphinx.

As we'll have other books related to the development process,
we'll add it as a sub-book.

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Mauro Carvalho Chehab and committed by
Jonathan Corbet
f0ddda3e 88b72c08

+22
+2
Documentation/conf.py
··· 338 338 latex_documents = [ 339 339 ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation', 340 340 'The kernel development community', 'manual'), 341 + ('development-process/index', 'development-process.tex', 'Linux Kernel Development Documentation', 342 + 'The kernel development community', 'manual'), 341 343 ('gpu/index', 'gpu.tex', 'Linux GPU Driver Developer\'s Guide', 342 344 'The kernel development community', 'manual'), 343 345 ]
+10
Documentation/development-process/conf.py
··· 1 + # -*- coding: utf-8; mode: python -*- 2 + 3 + project = 'Linux Kernel Development Documentation' 4 + 5 + tags.add("subproject") 6 + 7 + latex_documents = [ 8 + ('index', 'development-process.tex', 'Linux Kernel Development Documentation', 9 + 'The kernel development community', 'manual'), 10 + ]
+9
Documentation/development-process/index.rst
··· 1 + Linux Kernel Development Documentation 2 + ====================================== 3 + 4 + Contents: 5 + 6 + .. toctree:: 7 + :maxdepth: 2 8 + 9 + development-process
+1
Documentation/index.rst
··· 12 12 :maxdepth: 2 13 13 14 14 kernel-documentation 15 + development-process/index 15 16 dev-tools/tools 16 17 driver-api/index 17 18 media/index