Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-13 | logind: create the session fifo before saving the session file | Thomas Hindoe Paaboel Andersen | |
If the session fifo is not created the session state written to the session file is "closing". This caused the lock screen in gnome-shell to go into a loop trying to find the active session. The problem was introduced in the sd-bus port in cc3773810855956bad92337cee8fa193584ab62e Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=71525 | |||
2013-11-14 | activate: fix crash when -s is passed | Mantas Mikulėnas | |
getopt_long() was told to accept -s which was never implemented. | |||
2013-11-14 | activate: mention -E in the help text | Mantas Mikulėnas | |
2013-11-14 | systemctl: honor --no-legend in 'list-jobs' | Mantas Mikulėnas | |
2013-11-14 | build: Allow disabling maintainer mode | Umut Tezduyar Lindskog | |
This allows make rules for generated build files (i.e. configure, Makefile.in, ... ) to be skipped. This is useful when the source is stored without timestamps (for example in CVS or GIT). When the build rules trigger to regenerate the build files, it tries to use the same autotools version (currently 1.14) as was originally used for the release. Since many of our build machines run Debian Squeeze, they only have autotools 1.11 available and the build fails. Currently, we have to work around this by touching all the generated files before building to avoid triggering the make rule. With this patch, we would be able to just run configure with --disable-maintainer-mode instead. The patch sets the default to enable to not change the default behavior. Ref: http://git.kernel.org/cgit/utils/kernel/kmod/kmod.git/commit/ ?id=f5cc26c77d2f332a9b40f51f0ec72e95711edf1e | |||
2013-11-13 | udev: declare some symbols static | Kay Sievers | |
2013-11-13 | libsystemd-id128: statically include sd_listen_fds() | Kay Sievers | |
2013-11-12 | build-sys: parallelize 'exported' target | Zbigniew Jędrzejewski-Szmek | |
2013-11-12 | systemd-python: fix booted() and add two functions to docs | Zbigniew Jędrzejewski-Szmek | |
For some reason sphinx doesn't want to show inherited C functions. | |||
2013-11-12 | build-sys: make public libraries depend on .sym files | Zbigniew Jędrzejewski-Szmek | |
This way modyfing the .sym file causes a rebuild. | |||
2013-11-12 | build-sys: add a link test for exported symbols | Zbigniew Jędrzejewski-Szmek | |
I know that this is a pretty big net to catch some small fish, but we *do* regularly forget to properly export symbols that were supposed to be exported. This time sd_bus_get_current and some renamed symbols are caught. | |||
2013-11-12 | build-sys: make networkd man pages conditional | Tom Gundersen | |
2013-11-12 | build-sys: Add --disable-networkd option | Colin Walters | |
For GNOME (Continuous), we are unlikely to require or want systemd-networkd in the near term future; all of the tools and code are targeting NetworkManager. The long term story is still an open question of course, but for now, there's no reason for gnome-continuous to build or ship this. | |||
2013-11-12 | uaccess: Add new DRM render nodes | Kristian Høgsberg | |
2013-11-12 | udev: declare some symbols static | Kay Sievers | |
2013-11-12 | bus: test-bus-objects - add missing header | Kay Sievers | |
2013-11-12 | bus: add missing dump.[ch] | Lennart Poettering | |
2013-11-12 | bus: beautify bus_message_dump() output a bit | Lennart Poettering | |
2013-11-12 | busctl: show machine name of all registered names | Lennart Poettering | |
2013-11-12 | bus: set no_auto_start flag for GetMachineId calls, so that we don't ↵ | Lennart Poettering | |
auto-start if we want to know the machine of a bus service | |||
2013-11-12 | bus: detect blocking message calls to our own connection and return ELOOP early | Lennart Poettering | |
2013-11-12 | bus: add api to control auto start message flag | Lennart Poettering | |
2013-11-12 | id128: introduce SD_ID128_STRING_MAX consant for sizing id128 strings | Lennart Poettering | |
2013-11-12 | bus: export utf8 validator calls as pure functions | Lennart Poettering | |
2013-11-12 | bus: introduce concept of a default bus for each thread and make use of it ↵ | Lennart Poettering | |
everywhere We want to emphasize bus connections as per-thread communication primitives, hence introduce a concept of a per-thread default bus, and make use of it everywhere. | |||
2013-11-12 | bus: introduce concept of a "default" event loop per-thread and make use of ↵ | Lennart Poettering | |
it everywhere Try to emphasize a bit that there should be a mapping between event loops and threads, hence introduce a logic that there's one "default" event loop for each thread, that can be queried via "sd_event_default()". | |||
2013-11-12 | test: fix minor memory leak in test-event | Lennart Poettering | |
2013-11-12 | bus: rename sd_bus_send_with_reply_and_block() to sd_bus_call() | Lennart Poettering | |
The call is one of the most important ones we expose, where we place major emphasis on. We should make sure to give it a short, memorable name. | |||
2013-11-11 | systemctl: warning: ‘r’ may be used uninitialized in this function | Kay Sievers | |
2013-11-11 | shell: add list-timers to systemctl completions | Dave Reisner | |
2013-11-11 | systemctl: avoid unitialized access when showing 0 timers | Zbigniew Jędrzejewski-Szmek | |
2013-11-11 | bus: add APIs for adding iovecs to messages as string or arrays | Lennart Poettering | |
2013-11-11 | systemctl: add new "list-timers" command | Lennart Poettering | |
2013-11-11 | timer: consider (usec_t) -1 an invalid timestamp | Lennart Poettering | |
2013-11-11 | timer: properly format relative timestamps in the future | Lennart Poettering | |
2013-11-11 | udev.xml: add missing </para> tag | Dave Reisner | |
2013-11-10 | udev.xml: minor fixes to network link configuration | Dave Reisner | |
- Refer to net_setup_link, not net-setup-link - Mention the required file extension earlier | |||
2013-11-10 | bus: we really need to get rid of the :no-sender hack | Lennart Poettering | |
This is where a hack from PID 1 spilled into the client side. We need to get rid of this as soon as PID 1 is converted to libsystemd-bus. | |||
2013-11-10 | bus: actually export sd_utf8_is_valid() and sd_ascii_is_valid() | Lennart Poettering | |
2013-11-10 | bus: use ENXIO as error condition when trying to exit a container when we ↵ | Lennart Poettering | |
are not in any So far we used ENXIO whenever the user tried to read something from a function that didn't carry the right type, and hence use the same error here to indicate that what the user expected and what was in the message didn't match up. | |||
2013-11-10 | build-sys: subtract list of exported symbols from "check-api-unused" list | Lennart Poettering | |
2013-11-10 | analyze: plot the time spent setting up security modules | Thomas Hindoe Paaboel Andersen | |
2013-11-10 | button: don't exit if we cannot handle a button press | Lennart Poettering | |
2013-11-10 | man: networkd - add documentation | Tom Gundersen | |
2013-11-10 | man: udev - add documentation for .link files | Tom Gundersen | |
2013-11-09 | bus: fix build with old glibc | Zbigniew Jędrzejewski-Szmek | |
2013-11-09 | systemctl: make sure daemon-reload returns success | Zbigniew Jędrzejewski-Szmek | |
Also change sd_bus_message_exit_container to return -ENOENT when not in a container, to make it easier to distinguish different errors. | |||
2013-11-10 | network: fix tests | Tom Gundersen | |
One of the tests were assuming the network configuration dirs exist. We can't do that, so disable it for now. | |||
2013-11-09 | systemctl: fix printing of individual properties | Zbigniew Jędrzejewski-Szmek | |
2013-11-09 | build-sys: simplify defined/undefined definition | Zbigniew Jędrzejewski-Szmek | |