qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio
at master 33 lines 1.3 kB view raw
1# -*- coding: utf-8 -*- 2# 3# QEMU documentation build configuration file for the 'tools' manual. 4# 5# This includes the top level conf file and then makes any necessary tweaks. 6import sys 7import os 8 9qemu_docdir = os.path.abspath("..") 10parent_config = os.path.join(qemu_docdir, "conf.py") 11exec(compile(open(parent_config, "rb").read(), parent_config, 'exec')) 12 13# This slightly misuses the 'description', but is the best way to get 14# the manual title to appear in the sidebar. 15html_theme_options['description'] = \ 16 u'Tools Guide' 17 18# One entry per manual page. List of tuples 19# (source start file, name, description, authors, manual section). 20man_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), 33]