diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2020-02-25 10:45:13 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2020-02-25 10:48:04 +0000 |
commit | 65c3542b1f4e6ad5648a6ee0f7ebc8bcc39035d3 (patch) | |
tree | 91c18a38a2cccd61da5af8413bb6f44ca3f544a4 /docs | |
parent | c1e667d2598b9b3ce62b8e89ed22dd38dfe9f57f (diff) | |
download | qemu-65c3542b1f4e6ad5648a6ee0f7ebc8bcc39035d3.zip qemu-65c3542b1f4e6ad5648a6ee0f7ebc8bcc39035d3.tar.gz qemu-65c3542b1f4e6ad5648a6ee0f7ebc8bcc39035d3.tar.bz2 |
docs: Create new 'tools' manual
Some of the documentation for QEMU "tools" which are standalone
binaries like qemu-img is an awkward fit in our current 5-manual
split. We've put it into "interop", but they're not really
about interoperability.
Create a new top level manual "tools" which will be a better
home for this documentation. This commit creates an empty
initial manual; we will move the relevant documentation
files in a subsequent commit.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 20200217155415.30949-2-peter.maydell@linaro.org
Diffstat (limited to 'docs')
-rw-r--r-- | docs/index.html.in | 1 | ||||
-rw-r--r-- | docs/index.rst | 1 | ||||
-rw-r--r-- | docs/tools/conf.py | 16 | ||||
-rw-r--r-- | docs/tools/index.rst | 11 |
4 files changed, 29 insertions, 0 deletions
diff --git a/docs/index.html.in b/docs/index.html.in index 8512933..cf61b1c 100644 --- a/docs/index.html.in +++ b/docs/index.html.in @@ -13,6 +13,7 @@ <li><a href="interop/index.html">System Emulation Management and Interoperability Guide</a></li> <li><a href="specs/index.html">System Emulation Guest Hardware Specifications</a></li> <li><a href="system/index.html">System Emulation User's Guide</a></li> + <li><a href="tools/index.html">Tools Guide</a></li> </ul> </body> </html> diff --git a/docs/index.rst b/docs/index.rst index 46405d4..acd604f 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -14,3 +14,4 @@ Welcome to QEMU's documentation! devel/index specs/index system/index + tools/index diff --git a/docs/tools/conf.py b/docs/tools/conf.py new file mode 100644 index 0000000..5646111 --- /dev/null +++ b/docs/tools/conf.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +# +# QEMU documentation build configuration file for the 'tools' manual. +# +# This includes the top level conf file and then makes any necessary tweaks. +import sys +import os + +qemu_docdir = os.path.abspath("..") +parent_config = os.path.join(qemu_docdir, "conf.py") +exec(compile(open(parent_config, "rb").read(), parent_config, 'exec')) + +# This slightly misuses the 'description', but is the best way to get +# the manual title to appear in the sidebar. +html_theme_options['description'] = \ + u'Tools Guide' diff --git a/docs/tools/index.rst b/docs/tools/index.rst new file mode 100644 index 0000000..c5a4a13 --- /dev/null +++ b/docs/tools/index.rst @@ -0,0 +1,11 @@ +.. This is the top level page for the 'tools' manual + + +QEMU Tools Guide +================ + + +Contents: + +.. toctree:: + :maxdepth: 2 |