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

docs-rst: add sound book to pdf output

The sound subsystem book was added without the bits required to
generate PDF output. Add them.

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>

+12
+2
Documentation/conf.py
··· 371 371 'The kernel development community', 'manual'), 372 372 ('security/index', 'security.tex', 'The kernel security subsystem manual', 373 373 'The kernel development community', 'manual'), 374 + ('sound/index', 'sound.tex', 'Linux Sound Subsystem Documentation', 375 + 'The kernel development community', 'manual'), 374 376 ] 375 377 376 378 # The name of an image file (relative to this directory) to place at the top of
+10
Documentation/sound/conf.py
··· 1 + # -*- coding: utf-8; mode: python -*- 2 + 3 + project = "Linux Sound Subsystem Documentation" 4 + 5 + tags.add("subproject") 6 + 7 + latex_documents = [ 8 + ('index', 'sound.tex', project, 9 + 'The kernel development community', 'manual'), 10 + ]