summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAge
* backlight: add minimal tool to save/restore screen brightness across rebootsLennart Poettering2013-08-14
| | | | | | | | | | As many laptops don't save/restore screen brightness across reboots, let's do this in systemd with a minimal tool, that restores the brightness as early as possible, and saves it as late as possible. This will cover consoles and graphical logins, but graphical desktops should do their own per-user stuff probably. This only touches firmware brightness controls for now.
* gpt-auto-generator: add basic auto-discovery of GPT partitionsLennart Poettering2013-08-13
| | | | | | | | | | | | | | | This adds a simple generator that is capable of automatically discovering certain GPT partitions by their type UUID and mount/enable them. This currently covers swap partitions and /home partitions, but is expected to grow more features soon. This currently doesn't handle LUKS encrypted /home. This enables all swap partitions of type 0657fd6da4ab43c484e50933c84b4f4f, if found. This mounts the first partition of type 933ac7e12eb44f13b8440e14e2aef915 as /home, if it is found.
* gitignore: add test-journal-initZbigniew Jędrzejewski-Szmek2013-08-04
|
* remove systemd-timestamp from sourcesDave Reisner2013-07-23
| | | | | No sense in keeping this around if support for reading RD_TIMESTAMP has been removed.
* switch from udev keymaps to hwdbKay Sievers2013-07-16
|
* Add test coverage and generate report with lcovThomas H.P. Andersen2013-07-13
| | | | | | | | | | | | | | Enable coverage with --enable-coverage. "make coverage" will create the report locally, "make coverage-sync" will upload the report to http://www.freedesktop.org/software/systemd/coverage/. Requires lcov version 1.10 to handle naming in systemd and to use the --no-external option. [zj: make the coverage at least generate something with separate build dir, simplify rules a bit: all errors are mine. ]
* tests: add tests for string lookup tablesZbigniew Jędrzejewski-Szmek2013-07-05
| | | | | The tests check if the tables have entries for all values in the enum, and that the entries are unique.
* machined: split out machine registration stuff from logindLennart Poettering2013-07-02
| | | | | | | Embedded folks don't need the machine registration stuff, hence it's nice to make this optional. Also, I'd expect that machinectl will grow additional commands quickly, for example to join existing containers and suchlike, hence it's better keeping that separate from loginctl.
* core: add transient unitsLennart Poettering2013-06-28
| | | | | | | | | | | | | | | | | | Transient units can be created via the bus API. They are configured via the method call parameters rather than on-disk files. They are subject to normal GC. Transient units currently may only be created for services (however, we will extend this), and currently only ExecStart= and the cgroup parameters can be configured (also to be extended). Transient units require a unique name, that previously had no configuration file on disk. A tool systemd-run is added that makes use of this functionality to run arbitrary command lines as transient services: $ systemd-run /bin/ping www.heise.de Will cause systemd to create a new transient service and run ping in it.
* test: Add list testcaseJan Janssen2013-06-27
|
* gitignore: Add test-journal-interleavingJan Janssen2013-06-12
|
* bus: add benchmark tool to determine the right threshold for copying vs. memfdLennart Poettering2013-05-22
|
* bus: add a more comprehensive test for the bloom filter logicLennart Poettering2013-05-20
|
* bus: add support for adding memfds into message payloadLennart Poettering2013-05-15
|
* bus: add new API for kdbus memfd functionalityLennart Poettering2013-05-10
|
* bus: add kdbus test caseLennart Poettering2013-04-12
|
* time: add suppot for fractional time specificationsLennart Poettering2013-04-03
| | | | | We can now parse "0.5s" as the same as "500ms". In fact, we can parse "3.45years" correctly, too, and any other unit and fraction length.
* shared: rework env file readerLennart Poettering2013-04-03
| | | | | | Implement this with a proper state machine, so that newlines and escaped chars can appear in string assignments. This should bring the parser much closer to shell.
* bus: parse matches locally and allow registration of callbacks for themLennart Poettering2013-03-31
| | | | | This includes code to parse and split up match strings which will also be useful to calculate bloom filter masks when the time comes.
* bus: add missing test-bus-server.cLennart Poettering2013-03-30
|
* gitignore: updateKay Sievers2013-03-30
|
* build-sys,man: use XML entities to substite stringsZbigniew Jędrzejewski-Szmek2013-03-29
| | | | | | | | | | | | | | | | | | | | | This makes it easier to add substitutions to man pages, avoiding the separate transformation step. mkdir -p's are removed from the rule, because xsltproc will will create directories on it's own. All in all, two or three forks per man page are avoided, which should make things marginally faster. Unfortunately python parsers must too be tweaked to handle entities. This isn't particularly easy: with lxml a custom Resolver can be used, but the stdlib etree doesn't support external entities *at all*. So when running without lxml, the entities are just removed. Right now it doesn't matter, since the entities are not indexed anyway. But I intend to add indexing of filenames in the near future, and then the index generated without lxml might be missing a few lines. Oh well.
* shared: add simple priority queue implementationLennart Poettering2013-03-21
|
* bus: hook up client with socket communicationLennart Poettering2013-03-20
|
* bus: add basic implementation of a native bus client libraryLennart Poettering2013-03-20
|
* man: clarify systemctl --property= documentation a bitLennart Poettering2013-02-28
|
* Add systemd-analyze to .gitignoreAuke Kok2013-02-13
|
* bootctl: add boot loader and firmware interface toolKay Sievers2013-02-11
|
* tests: add tests of strxcpyxThomas Hindoe Paaboel Andersen2013-02-10
| | | | also fix a bad indentation in test-strbug.c
* tests: add test of strbufThomas Hindoe Paaboel Andersen2013-02-09
|
* test: add a few tests and tidy upThomas Hindoe Paaboel Andersen2013-02-06
| | | | | | | | | | | | | | adds test of: strv_find strv_find_prefix strv_overlap strv_sort streq_ptr first_word Splits tests of util.c into own file to avoid clutter as we add more. Removed a few prints and uses _cleanup_free_ to make the tests more focused.
* efi: add efi boot generator that automatically mounts the ESP to /bootLennart Poettering2013-01-21
|
* core: if the bootloader supports it, determine firmware and boot loader delayLennart Poettering2013-01-19
| | | | | | | | | | | | | This allows us to print simple performance data of all parts of the boot now: - firmware - boot loader - kernel - initrd - userspace This only works for bootloaders which support passing TSC data via EFI variables. As of now that's only gummiboot.
* git: ignore bootchart binaryLennart Poettering2013-01-08
|
* journalctl: strip TABs and ANSI color sequences from log messages when ↵Lennart Poettering2012-12-23
| | | | displaying them
* gitignore: ignore .trs files from testsKay Sievers2012-12-02
|
* build-sys: use parallel tests driverZbigniew Jędrzejewski-Szmek2012-12-01
| | | | | | | | | | | This saves test output to individual .log files. The driver is only used in /Makefile.am, not in /docs/*udev/Makefile.am because the latter don't seem to work with this driver. They don't produce much output anyway. .gitignore is alphabetized, and .log files are added to it. Generated files from /build-aux are removed from the list.
* timer: implement calendar time eventsLennart Poettering2012-11-23
|
* journal: implement message catalogLennart Poettering2012-11-15
| | | | | | | | | | | | | | | | | The message catalog can be used to attach short help texts to log lines, keyed by their MESSAGE_ID= fields. This is useful to help the administrator understand the context and cause of a message, find possible solutions and find further related documentation. Since this is keyed off MESSAGE_ID= this will only work for native journal messages. The message catalog supports i18n, and is useful to augment english language system messages with explanations in the local language. This commit only includes short explanatory messages for a few example message IDs, we'll add more complete documentation for the relevant systemd messages later on.
* sched: Only setting CPUSchedulingPriority=rr doesn't workHolger Hans Peter Freyther2012-11-15
| | | | | | | | | | | | | | | | | | | A service that only sets the scheduling policy to round-robin fails to be started. This is because the cpu_sched_priority is initialized to 0 and is not adjusted when the policy is changed. Clamp the cpu_sched_priority when the scheduler policy is set. Use the current policy to validate the new priority. Change the manual page to state that the given range only applies to the real-time scheduling policies. Add a testcase that verifies this change: $ make test-sched-prio; ./test-sched-prio [test/sched_idle_bad.service:6] CPU scheduling priority is out of range, ignoring: 1 [test/sched_rr_bad.service:7] CPU scheduling priority is out of range, ignoring: 0 [test/sched_rr_bad.service:8] CPU scheduling priority is out of range, ignoring: 100
* shared: add API for replacing @FOO@ style variables in stringsLennart Poettering2012-11-14
|
* logind: support for hybrid sleep (i.e. suspend+hibernate at the same time)Lennart Poettering2012-10-28
|
* journal: introduce entry array chain cacheLennart Poettering2012-10-26
| | | | | | | | | | | | When traversing entry array chains for a bisection or for retrieving an item by index we previously always started at the beginning of the chain. Since we tend to look at the same chains repeatedly, let's cache where we have been the last time, and maybe we can skip ahead with this the next time. This turns most bisections and index lookups from O(log(n)*log(n)) into O(log(n)). More importantly however, we seek around on disk much less, which is good to reduce buffer cache and seek times on rotational disks.
* update .gitignoreKay Sievers2012-10-22
|
* locale: add client tool localectl similar to hostnamectl/timedatectlLennart Poettering2012-10-19
|
* hostname: add new hostnamectl tool as text client for hostnamedLennart Poettering2012-10-17
|
* timedatectl: introduce new command line client for timedatedLennart Poettering2012-10-17
| | | | | | Much like logind has a client in loginctl, and journald in journalctl introduce timedatectl, to change the system time (incl. RTC), timezones and related settings.
* journald: properly update message size after stripping the identifierZbigniew Jędrzejewski-Szmek2012-10-13
| | | | | | | | | | Valgrind says: ==29176== Conditional jump or move depends on uninitialised value(s) ==29176== at 0x412A85: cunescape_length_with_prefix (util.c:1565) ==29176== by 0x40B351: dev_kmsg_record (journald-kmsg.c:301) ==29176== by 0x40B653: server_read_dev_kmsg (journald-kmsg.c:347) ==29176== by 0x40B701: server_flush_dev_kmsg (journald-kmsg.c:365) ==29176== by 0x409DE7: main (journald.c:1535)
* journalctl: implement --since= and --until for filtering by timeLennart Poettering2012-10-11
|
* journal: add minimal journal gateway daemon based on GNU libmicrohttpdLennart Poettering2012-09-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This minimal HTTP server can serve journal data via HTTP. Its primary purpose is synchronization of journal data across the network. It serves journal data in three formats: text/plain: the text format known from /var/log/messages application/json: the journal entries formatted as JSON application/vnd.fdo.journal: the binary export format of the journal The HTTP server also serves a small HTML5 app that makes use of the JSON serialization to present the journal data to the user. Examples: This downloads the journal in text format: # systemctl start systemd-journal-gatewayd.service # wget http://localhost:19531/entries Same for JSON: # curl -H"Accept: application/json" http://localhost:19531/entries Access via web browser: $ firefox http://localhost:19531/