From 0928523a1230a690c933cee6e353e06b0810c7c6 Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Thu, 23 Jan 2020 15:22:40 +0000 Subject: docs: Create stub system manual MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We want a user-facing manual which contains system emulation documentation. Create an empty one which we can populate. Signed-off-by: Peter Maydell Reviewed-by: Alex Bennée Acked-by: Stefan Hajnoczi Message-id: 20200116141511.16849-3-peter.maydell@linaro.org --- docs/system/conf.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/system/conf.py (limited to 'docs/system/conf.py') diff --git a/docs/system/conf.py b/docs/system/conf.py new file mode 100644 index 0000000000..6435b4d3f8 --- /dev/null +++ b/docs/system/conf.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# +# QEMU documentation build configuration file for the 'system' 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'System Emulation User''s Guide' -- cgit v1.2.3