summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* locale-util: add logic to output smiley emojis at various happiness levelsLennart Poettering2019-05-031-0/+5
| | | | | | | | | | | | (cherry picked from commit 5f1b0cc6d064f7847982e7b680cab3d080aef52e) Conflicts: doc/ENVIRONMENT.md src/basic/locale-util.c src/basic/locale-util.h src/test/test-locale-util.c Related: #1689832
* doc: document the `architecture` settingLennart Poettering2018-06-201-0/+1
|
* doc: allow multiple initrd entries per BLS snippetLennart Poettering2018-06-201-1/+1
| | | | | sd-boot already supports that anyway, and the Fedora folks asked for this on the fedora mailing list, hence let's simply add this.
* doc: update BLS links listLennart Poettering2018-06-201-4/+3
| | | | let's make these proper links
* doc: add a second indentation level to partition list, to separate MBR and ↵Lennart Poettering2018-06-201-6/+8
| | | | GPT partitions
* Merge the "boot loader specification" wiki pageZbigniew Jędrzejewski-Szmek2018-06-191-0/+138
|\
| * Add description of field correspondenceZbigniew Jędrzejewski-Szmek2018-06-191-1/+3
| |
| * Also add link to the systemd-boot man pageZbigniew Jędrzejewski-Szmek2018-06-191-0/+1
| | | | | | | | | | Note that the link is dead right now, because we haven't released v239 which contains the rename sd-boot → systemd-boot.
| * Add a description of unified kernel imagesZbigniew Jędrzejewski-Szmek2018-06-191-12/+29
| |
| * Rename sd-boot to systemd-bootZbigniew Jędrzejewski-Szmek2018-06-191-1/+1
| | | | | | | | C.f. 70c8db755558927bdea56e9571c5d71300a81e8e.
| * Wording and formatting updatesZbigniew Jędrzejewski-Szmek2018-06-191-14/+14
| | | | | | | | UTF-8 is not a character set. Unicode is the character set. UTF-* are encodings.
| * BLS: allow /boot, /efi, and mention /boot/efiZbigniew Jędrzejewski-Szmek2018-06-191-1/+3
| |
| * BLS: remove trailing whitespaceZbigniew Jędrzejewski-Szmek2018-06-191-51/+51
| |
| * Reference sd-boot/bootctl instead of gummibootZbigniew Jędrzejewski-Szmek2018-06-191-2/+3
| | | | | | | | https://github.com/systemd/systemd/issues/2751
| * Update link to grub2 patchHarald Hoyer2018-06-191-1/+1
| |
| * Require a VFAT filesystemLennart Poettering2018-06-191-1/+1
| |
| * Rename back to "The Boot Loader Specification"Lennart Poettering2018-06-191-24/+115
| |
| * Add table of GPT identifiersLennart Poettering2018-06-191-0/+20
| |
| * Rename to "The Discoverable Partitions Specification"Lennart Poettering2018-06-191-113/+2
| |
| * Drop 'fdt', 'devicetreedir', 'fdtdir' description againKay Sievers2018-06-191-3/+0
| |
| * Update 'devicetreedir' descriptionHarald Hoyer2018-06-191-1/+1
| |
| * Add fdt, devicetreedir and fdtdirHarald Hoyer2018-06-191-0/+3
| |
| * Add 'devicetree'Kay Sievers2018-06-191-0/+3
| |
| * Update formattingKay Sievers2018-06-191-10/+11
| |
| * Fix Fedora Grub2 Boot Loader Speficiation patchColin Guthrie2018-06-191-1/+1
| |
| * Add linksKay Sievers2018-06-191-0/+7
| |
| * Split paragraphsHarald Hoyer2018-06-191-3/+5
| |
| * fixed example fileHarald Hoyer2018-06-191-12/+8
| |
| * moin2mdwn: convert page Specifications/BootLoaderSpecHarald Hoyer2018-06-191-0/+106
| | | | [zj: change file path and name and extension]
* Drop my copyright headersZbigniew Jędrzejewski-Szmek2018-06-142-4/+0
| | | | | | | perl -i -0pe 's/\s*Copyright © .... Zbigniew Jędrzejewski.*?\n/\n/gms' man/*xml git grep -e 'Copyright.*Jędrzejewski' -l | xargs perl -i -0pe 's/(#\n)?# +Copyright © [0-9, -]+ Zbigniew Jędrzejewski.*?\n//gms' git grep -e 'Copyright.*Jędrzejewski' -l | xargs perl -i -0pe 's/\s*\/\*\*\*\s+Copyright © [0-9, -]+ Zbigniew Jędrzejewski[^\n]*?\s*\*\*\*\/\s*/\n\n/gms' git grep -e 'Copyright.*Jędrzejewski' -l | xargs perl -i -0pe 's/\s+Copyright © [0-9, -]+ Zbigniew Jędrzejewski[^\n]*//gms'
* tree-wide: beautify remaining copyright statementsLennart Poettering2018-06-142-2/+2
| | | | | | Let's unify an beautify our remaining copyright statements, with a unicode ©. This means our copyright statements are now always formatted the same way. Yay.
* doc: typo fixes, mostly duplicated wordsMichael Biebl2018-06-124-6/+6
|
* NEWS, CODE_QUALITY: wording fixesZbigniew Jędrzejewski-Szmek2018-06-121-3/+2
| | | | No additions, just moving stuff around and wording cleanups.
* doc: extend CODE_QUALITY.md with two more itemsLennart Poettering2018-06-121-0/+7
|
* CODING_STYLE: allow c99-style mixed code and declarationsZbigniew Jędrzejewski-Szmek2018-06-071-10/+2
| | | | | | | | | | | | We already allowed variables to be declared in the middle of a function (whenever a new scope was opened), so this isn't such a big change. Sometimes we would open a scope just to work around this prohibition. But sometimes the code can be much clearer if the variable is declared somewhere in the middle of a scope, in particular if the declaration is combined with initialization or acquisition of some resources. So let's allow this, but keep things in the old style, unless there's a good reason to move the variable declaration to a different place.
* HACKING: link up CODE_QUALITY.mdLennart Poettering2018-06-071-0/+5
|
* doc: add a list of code quality tools we have set upLennart Poettering2018-06-071-0/+54
| | | | Also, as a reminder all of these exist to myself.
* doc: fix quotingZbigniew Jędrzejewski-Szmek2018-05-261-1/+1
| | | | Noticed by Craig Barnes.
* doc: add introductory docs for portable servicesLennart Poettering2018-05-241-0/+251
|
* Merge pull request #8898 from poettering/nspawn-mount-blockZbigniew Jędrzejewski-Szmek2018-05-081-7/+8
|\ | | | | some nspawn cgroup and mount lock-down fixes
| * doc: document nore carefully that tmpfs within the cgroupfs setup shouldn't ↵Lennart Poettering2018-05-031-7/+8
| | | | | | | | confuse statfs() checks
* | doc: clarify at which point user/group name resolution needs to work (#8884)Lennart Poettering2018-05-071-0/+35
|/ | | | | Prompted by the discussions on: https://bugs.freedesktop.org/show_bug.cgi?id=106339
* Merge pull request #8815 from poettering/get-unit-by-cgroupLennart Poettering2018-05-021-1/+11
|\ | | | | add new GetUnitByControlGroup API
| * doc: recommend GetUnitByControlGroup() in the docsLennart Poettering2018-04-251-1/+11
| |
* | doc: clarify the intended audience of CGROUP_DELEGATION.mdLennart Poettering2018-04-271-0/+3
|/ | | | | There was some confusion about who is the intended audience. Let's clarify that early on, to ensure people aren't disappointed.
* CGROUP_DELEGATION: typo and grammar fixesZbigniew Jędrzejewski-Szmek2018-04-241-43/+43
|
* doc: add $SYSTEMD_TIMEDATED_NTP_SERVICES= in ENVIRONMENT.md (#8785)Yu Watanabe2018-04-231-0/+7
|
* doc: add a bit more documentation about systemd and cgroups and cgroupsv2 ↵Lennart Poettering2018-04-201-0/+442
| | | | | | | | | and delegation Ultimately we should replace the relevant wiki texts with documentation maintained as part of our project tree. This is a start. It can't replace the wiki documentation in full yet, but I think it's already very useful.
* tree-wide: drop license boilerplateZbigniew Jędrzejewski-Szmek2018-04-062-26/+0
| | | | | | | | | | Files which are installed as-is (any .service and other unit files, .conf files, .policy files, etc), are left as is. My assumption is that SPDX identifiers are not yet that well known, so it's better to retain the extended header to avoid any doubt. I also kept any copyright lines. We can probably remove them, but it'd nice to obtain explicit acks from all involved authors before doing that.
* CODING_STYLE: document suggested suffixes to use in documentationLennart Poettering2018-04-031-0/+12
|