target/s390x: Fix SQXBR
[qemu/ar7.git] / docs / tools / conf.py
blob9052d17d6d476a5c7df51b64dfb9f23c3313fc0d
1 # -*- coding: utf-8 -*-
3 # QEMU documentation build configuration file for the 'tools' manual.
5 # This includes the top level conf file and then makes any necessary tweaks.
6 import sys
7 import os
9 qemu_docdir = os.path.abspath("..")
10 parent_config = os.path.join(qemu_docdir, "conf.py")
11 exec(compile(open(parent_config, "rb").read(), parent_config, 'exec'))
13 # This slightly misuses the 'description', but is the best way to get
14 # the manual title to appear in the sidebar.
15 html_theme_options['description'] = \
16 u'Tools Guide'
18 # One entry per manual page. List of tuples
19 # (source start file, name, description, authors, manual section).
20 man_pages = [
21 ('qemu-img', 'qemu-img', u'QEMU disk image utility',
22 ['Fabrice Bellard'], 1),
23 ('qemu-nbd', 'qemu-nbd', u'QEMU Disk Network Block Device Server',
24 ['Anthony Liguori <anthony@codemonkey.ws>'], 8),
25 ('qemu-trace-stap', 'qemu-trace-stap', u'QEMU SystemTap trace tool',
26 [], 1),
27 ('virtfs-proxy-helper', 'virtfs-proxy-helper',
28 u'QEMU 9p virtfs proxy filesystem helper',
29 ['M. Mohan Kumar'], 1),
30 ('virtiofsd', 'virtiofsd', u'QEMU virtio-fs shared file system daemon',
31 ['Stefan Hajnoczi <stefanha@redhat.com>',
32 'Masayoshi Mizuma <m.mizuma@jp.fujitsu.com>'], 1),