summaryrefslogtreecommitdiffstats
path: root/man/systemd-battery-check.service.xml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* man: convert multiple left-over "See Also" sections to <simplelist>Lennart Poettering2024-11-051-3/+3
| | | | | | | These were forgotten during the initial conversion, probably because most of them consisted only of a single entry. Fix that.
* tree-wide: use "_" rather than "-" as separator in kernel cmdline optionsLennart Poettering2024-02-281-1/+1
| | | | | | | | | | | Most of our kernel cmdline options use underscores as word separators in kernel cmdline options, but there were some exceptions. Let's fix those, and also use underscores. Since our /proc/cmdline parsers don't distinguish between the two characters anyway this should not break anything, but makes sure our own codebase (and in particular docs and log messages) are internally consistent.
* man: use same version in public and system ident.David Tardon2023-12-251-1/+1
|
* man: more hyperlinks and other fixesZbigniew Jędrzejewski-Szmek2023-11-061-9/+6
| | | | Closes https://github.com/systemd/systemd/issues/29814.
* man: add version infoAbderrahim Kitouni2023-08-291-0/+2
| | | | | | | | This tries to add information about when each option was added. It goes back to version 183. The version info is included from a separate file to allow generating it, which would allow more control on the formatting of the final output.
* battery-check: allow to skip by passing systemd.battery-check=0Yu Watanabe2023-07-141-0/+20
|
* battery-check: rework unitLennart Poettering2023-06-301-0/+72
Let's rename the unit to systemd-battery-check.service. We usually want to name our own unit files like our tools they wrap, in particular if they are entirely defined by us (i.e. not just wrappers of foreign concepts) While we are at it, also hook this in from initrd.target, and order it against initrd-root-device.target so that it runs before the root device is possibly written to (i.e. mounted or fsck'ed). This is heavily inspired by @aafeijoo-suse's PR #28208, but quite different ;-)