diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-14 20:18:36 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-15 11:30:41 -0500 |
commit | 4a431c9ab1475b38868c9e240a5615739a3d6458 (patch) | |
tree | 029c4aca8b0d118f784d9f5ea21891a977399e8f | |
parent | 8bae5e6abeca9ec2beb6d6e6b14a558283e895c9 (diff) |
man: add bootchart.conf to directives index
-rw-r--r-- | Makefile.am | 3 | ||||
-rwxr-xr-x | make-directive-index.py | 10 |
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) |