diff --git a/Documentation/conf.py b/Documentation/conf.py index db78974aad266b598ba411228afbd8cc0adee901..ba38bcf485a9c4ff8862cc7e473c926a7b4f3762 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -342,6 +342,10 @@ if major == 1 and minor > 3: latex_documents = [ ('admin-guide/index', 'linux-user.tex', 'Linux Kernel User Documentation', 'The kernel development community', 'manual'), + ('core-api/index', 'core-api.tex', 'The kernel core API manual', + 'The kernel development community', 'manual'), + ('driver-api/index', 'driver-api.tex', 'The kernel driver API manual', + 'The kernel development community', 'manual'), ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation', 'The kernel development community', 'manual'), ('process/index', 'development-process.tex', 'Linux Kernel Development Documentation', @@ -350,6 +354,8 @@ latex_documents = [ 'The kernel development community', 'manual'), ('media/index', 'media.tex', 'Linux Media Subsystem Documentation', 'The kernel development community', 'manual'), + ('security/index', 'security.tex', 'The kernel security subsystem manual', + 'The kernel development community', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of diff --git a/Documentation/core-api/conf.py b/Documentation/core-api/conf.py index fed87ab7f4867193a7d73e34600ea7593fc6fbfe..db1f7659f3da0aec74baf67eaa56b46bb294771f 100644 --- a/Documentation/core-api/conf.py +++ b/Documentation/core-api/conf.py @@ -3,3 +3,8 @@ project = "Core-API Documentation" tags.add("subproject") + +latex_documents = [ + ('index', 'core-api.tex', project, + 'The kernel development community', 'manual'), +] diff --git a/Documentation/security/conf.py b/Documentation/security/conf.py new file mode 100644 index 0000000000000000000000000000000000000000..472fc9a8eb67014dc4fd2c5b044d78edb64f7bc5 --- /dev/null +++ b/Documentation/security/conf.py @@ -0,0 +1,8 @@ +project = "The kernel security subsystem manual" + +tags.add("subproject") + +latex_documents = [ + ('index', 'security.tex', project, + 'The kernel development community', 'manual'), +]