Skip to content

Commit

Permalink
docs: Add more manuals to the PDF build
Browse files Browse the repository at this point in the history
There were a few manuals that weren't being built in PDF format, but
there's no reason not to...

Signed-off-by: Jonathan Corbet <[email protected]>
  • Loading branch information
Jonathan Corbet committed Nov 16, 2016
1 parent 3ed3e13 commit 22917b9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Documentation/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,10 @@
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',
Expand All @@ -350,6 +354,8 @@
'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
Expand Down
5 changes: 5 additions & 0 deletions Documentation/core-api/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@
project = "Core-API Documentation"

tags.add("subproject")

latex_documents = [
('index', 'core-api.tex', project,
'The kernel development community', 'manual'),
]
8 changes: 8 additions & 0 deletions Documentation/security/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project = "The kernel security subsystem manual"

tags.add("subproject")

latex_documents = [
('index', 'security.tex', project,
'The kernel development community', 'manual'),
]

0 comments on commit 22917b9

Please sign in to comment.