summaryrefslogtreecommitdiff
path: root/man/systemd-bootchart.xml
Commit message (Collapse)AuthorAge
* s/commandline/command line/gHarald Hoyer2014-11-06
|
* bootchart: don't parse /proc/uptime, use CLOCK_BOOTTIMEKarel Zak2014-08-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * systemd-bootchart always parses /proc/uptime, although the information is unnecessary when --rel specified * use /proc/uptime is overkill, since Linux 2.6.39 we have clock_gettime(CLOCK_BOOTTIME, ...). The backend on kernel side is get_monotonic_boottime() in both cases. * main() uses "if (graph_start <= 0.0)" to detect that /proc is available. This is fragile solution as graph_start is always smaller than zero on all systems after suspend/resume (e.g. laptops), because in this case the system uptime includes suspend time and uptime is always greater number than monotonic time. For example right now difference between uptime and monotonic time is 37 hours on my laptop. Note that main() calls log_uptime() (to parse /proc/uptime) for each sample when it believes that /proc is not available. So on my laptop systemd-boochars spends all live with /proc/uptime parsing + nanosleep(), try strace /usr/lib/systemd/systemd-bootchart to see the never ending loop. This patch uses access("/proc/vmstat", F_OK) to detect procfs.
* man: add a mapping for external manpagesZbigniew Jędrzejewski-Szmek2014-07-07
| | | | | | | | | | | | | | | | | | | | | | | | It is annoying when we have dead links on fd.o. Add project='man-pages|die-net|archlinux' to <citerefentry>-ies. In generated html, add external links to http://man7.org/linux/man-pages/man, http://linux.die.net/man/, https://www.archlinux.org/. By default, pages in sections 2 and 4 go to man7, since Michael Kerrisk is the autorative source on kernel related stuff. The rest of links goes to linux.die.net, because they have the manpages. Except for the pacman stuff, since it seems to be only available from archlinux.org. Poor gummiboot gets no link, because gummitboot(8) ain't to be found on the net. According to common wisdom, that would mean that it does not exist. But I have seen Kay using it, so I know it does, and deserves to be found. Can somebody be nice and put it up somewhere?
* bootchart: add control group optionWaLyong Cho2014-04-24
|
* man: systemd-bootchart - fix spacing in commandZachary Cook2014-03-06
| | | | Use the same formatting as the systemd-analyze man page, so that man shows a space.
* man: xinclude --help/--version/--no-pagerZbigniew Jędrzejewski-Szmek2014-02-20
|
* man: wording and grammar updatesJan Engelhardt2013-07-21
| | | | | This includes regularly-submitted corrections to comma setting and orthographical mishaps that appeared in man/ in recent commits.
* Add help option to bootchart man pageNathaniel Chen2013-05-02
| | | | | | | | Bootchart has a help option. For the sake of consistency, this patch adds it to the man page. Also, the TODO is updated. Bootcharts were added to the journal in commit c4d58b0.
* sd-messages.h: add new bootchart message idZbigniew Jędrzejewski-Szmek2013-04-17
|
* bootchart: document -C, --cmdline parameterHarald Hoyer2013-03-07
|
* man: Add reason for disk model info not workingWilliam Giokas2013-02-17
| | | | | | In systemd-bootchart, the disk model information will not be found unless the root device is specified using `root=/dev/sdxY` on the kernel line. Just add a note as to why this doesn't happen.
* bootchart: rename --filter to --no-filterZbigniew Jędrzejewski-Szmek2013-02-16
| | | | | | Turning off filtering with --filter is just too confusing. Config option "Filter" doesn't have to be changed, here "Filter=yes" already meant to filter.
* man: move bootchart README to manpage, docbooksifyZbigniew Jędrzejewski-Szmek2013-02-16
|
* man: Add even more to the bootchart man pageWilliam Giokas2013-02-14
| | | | | | | | | | Essentially transfer the 'README' file in src/bootchart to the man page for easier reading by users. Moved the 'History' section to the bottom, before the 'See Also' section. man/systemd-bootchart.xml | 100 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 83 insertions(+), 17 deletions(-)
* man: bootchart: change /var/log to /run/logWilliam Giokas2013-02-13
| | | | | | As of [1], bootchart stores files in /run/log, not /var/log, by default. [1] f2f85884caac671da84256acb44148df9a4dca70
* man: Write man page for systemd-bootchart(1)William Giokas2013-02-13
| | | | Mostly coppied from bootchart.conf(5)
* build-sys: create Makefile-man.am automaticallyZbigniew Jędrzejewski-Szmek2013-02-06
| | | | | | | | | | | | | | | | | | | man rules were repeating the same information in too many places, which was error prone. Those rules can be easily generated from .xml files. For efficiency and because python is not a required dependency, Makefile-man.am is only regenerated when requested with make update-man-list If no metadata in man/*.xml changed, this file should not change. So only when a new man page or a new alias is added, this file should show up in 'git diff'. The change should then be committed. If the support for building from git without python was dropped, we could drop Makefile-man.am from version control. This would also increase the partial build time (since more stuff would be rebuild whenever sources in man/*.xml would be modified), so it would probably wouldn't be worth it.
* man: extend systemd.directives(7) to all manual pagesZbigniew Jędrzejewski-Szmek2013-01-26
| | | | | | | | | | New sections are added: PAM options, crypttab options, commandline options, miscellaneous. The last category will be used for all untagged <varname> elements. Commandline options sections is meant to be a developer tool: when adding an option it is sometimes useful to be able to check if similarly named options exist elsewhere.
* man/systemd-bootchart.xml: fix typoThomas Hindoe Paaboel Andersen2013-01-09
|
* bootchart: merge bootchartAuke Kok2013-01-07
Bootchart is renamed to 'systemd-bootchart' and installed as /usr/lib/systemd/systemd-bootchart. The configuration file will reside in /etc/systemd/bootchart.conf.