Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-08-09 | journald: never read the same kernel msg twice, and generate message when we ↵ | Lennart Poettering | |
lose one | |||
2012-08-09 | update TODO | Lennart Poettering | |
2012-08-09 | man: document kernel journal fields | Lennart Poettering | |
2012-08-09 | journalctl: support device node matches as shortcut | Lennart Poettering | |
2012-08-09 | journald: properly unescape messages from /dev/kmsg | Lennart Poettering | |
2012-08-09 | journald: also parse kernel key/value fields and store them prefixed with ↵ | Lennart Poettering | |
_KERNEL_ as journal fields | |||
2012-08-09 | journald: basic support for /dev/kmsg parsing | Lennart Poettering | |
2012-08-09 | man: clarify the order of seats in sd_get_seats() is undefined | Lennart Poettering | |
2012-08-09 | update mailmap | Lennart Poettering | |
2012-08-09 | build-sys: use more generic regular expression to generate syscall-list.txt ↵ | Huang Hang | |
correctly Currently MIPS and ARM define syscall numbers for multiple ABI in one <asm/unistd.h>. The #define statments for each syscall are formated as: #define __NR_scname (BASE_OFFSET + sc_number) Thus we need a more generic regular expression to match these in awk. | |||
2012-08-09 | update TODO | Lennart Poettering | |
2012-08-08 | fix a couple of issues found with llvm-analyze | Lennart Poettering | |
2012-08-08 | build-sys: prepare release 188systemd/v188 | Lennart Poettering | |
2012-08-08 | update TODO | Lennart Poettering | |
2012-08-08 | build-sys: add CFLAGS to CPP calls | Peter Alfredsen | |
It changes the defines WORDSIZE and __I386, CFLAGS=-m32. | |||
2012-08-08 | build-sys: really override CFLAGS for gtk-doc | Zbigniew Jędrzejewski-Szmek | |
In 29a00c41 an override was added, but commandline variables have higher precedence than Makefile variables, so the override was not effective for commandline variables. While at it, duplicate for libudev. | |||
2012-08-08 | update TODO | Lennart Poettering | |
2012-08-08 | update TODO | Lennart Poettering | |
2012-08-08 | Merge remote-tracking branch 'simonpe/cleanup' | Lennart Poettering | |
2012-08-08 | update TODO | Lennart Poettering | |
2012-08-08 | udev: fix typo in copyright | Kay Sievers | |
2012-08-08 | gudev: docs - work around the broken gtk-doc mess | Kay Sievers | |
gtk-doc add CFLAGS/LDFLAGS multiple times to the gcc command line, which breaks options that must be listed only once. For now, clear CFLAGS/LDFLAGS for the intermediate documentation binary. | |||
2012-08-08 | systemd: introduced new timeout types | Michal Sekletar | |
Makes possible to specify separate timeout for start and stop of the service. [ Improved the manpage. Coding style fix. -- michich ] | |||
2012-08-08 | logind: use bus_method_call_with_reply() where posible | Simon Peeters | |
2012-08-08 | update-utmp: use bus_method_call_with_reply() where posible | Simon Peeters | |
2012-08-08 | udev: re-initialize builtins in the daemon process, not in the worker | Kay Sievers | |
2012-08-08 | udev: initialize rules dir timestamps when reading rules | Kay Sievers | |
On Wed, Aug 8, 2012 at 11:48 AM, Michael Schroeder <mls@suse.de> wrote: > if rules are installed in the first 3 seconds after the udev start, > the stamps will all be zero, so the [first] call to check_rules_timestamp() > will just copy the current mtime [and not cause a rules re-load]. | |||
2012-08-08 | loginctl: use bus_method_call_with_reply() where posible | Simon Peeters | |
2012-08-08 | autogen.sh: disable _FORTIFY_SOURCE, we want -O0, which is incompatible | Kay Sievers | |
2012-08-08 | build-sys: link internal selinux lib to systemd-remount-fs | Kay Sievers | |
2012-08-08 | build-sys: pass param to stack protector | Lennart Poettering | |
2012-08-08 | build-sys: drop obsolete gcc switch | Lennart Poettering | |
2012-08-08 | build-sys: typo fix | Lennart Poettering | |
2012-08-08 | TODO: misleading socket warning | Kay Sievers | |
2012-08-08 | build-sys: enable a couple of security features | Lennart Poettering | |
Most distributions enable these downstream anyway, but it probably makes sense to enable them unconditionally upstream too. | |||
2012-08-08 | move bus_method_call_with_reply() to dbus-common | Simon Peeters | |
2012-08-08 | systemctl: use bus_method_call_with_reply() where posible | Simon Peeters | |
use the method introduced by the previous commit | |||
2012-08-08 | systemctl: add bus_method_call_with_reply | Simon Peeters | |
this method combines the folowing dbus calls and there error handling: dbus_message_new_method_call() dbus_message_append_args() dbus_connection_send_with_reply_and_block() | |||
2012-08-07 | units: remove prefdm | Lennart Poettering | |
It's time to get rid of prefdm. Distributions which still want to use this should maintain this downstream, but it's probably better to just provide proper units for the various display managers, like Fedora is doing this, for example: https://fedoraproject.org/wiki/Features/DisplayManagerRework | |||
2012-08-07 | update TODO | Lennart Poettering | |
2012-08-07 | journalctl: include corrupted files in output | Lennart Poettering | |
If a journal file was rotated away because it was corrupted or dirty we should still show its contents via "journalctl". | |||
2012-08-06 | mount-setup: change system mount propagation to shared by default | Lennart Poettering | |
In order to make containers work nicely out of the box it is highly desirable to have the mount propagation mode for the root fs is set as "shared" by default so that containers receive system mounts by default. (See mount --make-shared for more information). As it is unlikely that the kernel will change the default to "shared" for this, do this early at boot-up from PID 1. Setups which prefer the default of "private" should undo this change via invoking "mount --make-private /" or a similar command after boot. In the long run /etc/fstab should take the propagation mode as a mount option like any other, so that this may be used to change the default mode. However, if fstab is not around or doesn't list / we still should default to shared as propagation mode, hence this change now. | |||
2012-08-06 | sysctl: apply configuration at once | Michal Sekletar | |
https://bugzilla.redhat.com/show_bug.cgi?id=767795 [ Simplified by iterating the config files in the backwards order - no need for hashmap_update(). Other minor cleanups. -- michich ] | |||
2012-08-06 | main: fix typo | Lennart Poettering | |
2012-08-06 | continue work with error messages, log_oom() | Shawn Landden | |
Adds messages for formally silent errors: new "Failed on cmdline argument %s: %s". Removes some specific error messages for -ENOMEM in mount-setup.c. A few specific ones have been left in other binaries. | |||
2012-08-06 | update TODO | Lennart Poettering | |
2012-08-06 | shutdown: allow to specify broadcast message when cancelling shutdown | Michal Sekletar | |
makes shutdown behaviour more compatible | |||
2012-08-06 | TODO: /etc/timezone | Kay Sievers | |
2012-08-03 | update TODO | Lennart Poettering | |
2012-08-03 | cryptsetup: add keyfile-size= support | Tom Gundersen | |
This is useful e.g. if the keyfile is a raw device, where only parts of it should be read. It is typically used whenever the keyfile-offset= option is specified. Tested-by: Erik Westrup <erik.westrup@gmail.com> |