summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am3
-rwxr-xr-xmake-directive-index.py10
2 files changed, 12 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index e10e421d43..05dcc79f6e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -714,7 +714,8 @@ XML_DIRECTIVE_FILES = \
man/systemd.device.xml \
man/systemd.conf.xml \
man/systemd.journal-fields.xml \
- man/systemd.time.xml
+ man/systemd.time.xml \
+ man/bootchart.conf.xml
man/systemd.directives.xml: make-directive-index.py $(XML_DIRECTIVE_FILES)
$(AM_V_at)$(MKDIR_P) $(dir $@)
diff --git a/make-directive-index.py b/make-directive-index.py
index eaf7019a2b..b35735e109 100755
--- a/make-directive-index.py
+++ b/make-directive-index.py
@@ -83,6 +83,15 @@ TEMPLATE = '''\
<variablelist id='journal-directives' />
</refsect1>
+
+ <refsect1>
+ <title>bootchart.conf directives</title>
+
+ <para>Directives for configuring the behaviour of the
+ systemd-bootchart process.</para>
+
+ <variablelist id='bootchart-directives' />
+ </refsect1>
</refentry>
'''
@@ -139,6 +148,7 @@ def make_page(xml_files):
'udev-directives',
'systemd-directives',
'journal-directives',
+ 'bootchart-directives',
]}
for page in xml_files:
_extract_directives(directive_groups, page)