target/arm/m_helper: Silence GCC 10 maybe-uninitialized error
[qemu/ar7.git] / docs / tools / conf.py
blob7072d993246b1f0e85b6e8ea2e5984225e88a53b
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-storage-daemon', 'qemu-storage-daemon', u'QEMU storage daemon',
24 [], 1),
25 ('qemu-nbd', 'qemu-nbd', u'QEMU Disk Network Block Device Server',
26 ['Anthony Liguori <anthony@codemonkey.ws>'], 8),
27 ('qemu-pr-helper', 'qemu-pr-helper', 'QEMU persistent reservation helper',
28 [], 8),
29 ('qemu-trace-stap', 'qemu-trace-stap', u'QEMU SystemTap trace tool',
30 [], 1),
31 ('virtfs-proxy-helper', 'virtfs-proxy-helper',
32 u'QEMU 9p virtfs proxy filesystem helper',
33 ['M. Mohan Kumar'], 1),
34 ('virtiofsd', 'virtiofsd', u'QEMU virtio-fs shared file system daemon',
35 ['Stefan Hajnoczi <stefanha@redhat.com>',
36 'Masayoshi Mizuma <m.mizuma@jp.fujitsu.com>'], 1),