Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-27 | debian: add locale compat support | Michael Biebl | |
Read LANG from /etc/default/locale. | |||
2010-09-27 | readahead: properly initialize variable | Lennart Poettering | |
2010-09-27 | update fixme | Lennart Poettering | |
2010-09-27 | sysv: optionally disable of SysV init/rcN.d support at compile time | Fabiano Fidencio | |
This patch adds a cpp definition HAVE_SYSV_COMPAT that is used to isolate code dealing with /etc/init.d and /etc/rcN.d for systems where it does not make sense (one that does not use sysv or one that is fully systemd native). The patch tries to be as little intrusive as possible, however in order to minimize the number of #ifdef'ed regions I've reordered some code in path-lookup.c:lookup_paths_init() where all code dealing with sysv is now isolated under running_as == MANAGER_SYSTEM as well. Moreover, In struct Service, some fields were rearranged to reduce the number of ifdefs. Lennart's suggestions were fixed and squashed with the original patch, that was sent by Gustavo Sverzut Barbieri (barbieri@profusion.mobi). | |||
2010-09-27 | hashmap: HASHMAP_FOREACH* iterate until ITERATOR_LAST | Harald Hoyer | |
2010-09-27 | job: show failure message only for start jobs | Lennart Poettering | |
2010-09-27 | mount: Remove double include of "mount.h" | Fabiano Fidencio | |
2010-09-27 | update fixme | Lennart Poettering | |
2010-09-26 | readahead-replay: use posix_fadvise instead of readahead | Harald Hoyer | |
2010-09-26 | readahead-collect: check for negative return codes of fs_on_ssd() | Harald Hoyer | |
2010-09-26 | readahead: add interface to sd-daemon.[ch] to control readahead | Lennart Poettering | |
2010-09-26 | readahead-collect: typo, free the correct pointer | Harald Hoyer | |
2010-09-25 | readahead: parse command line arguments | Lennart Poettering | |
2010-09-25 | readahead: never readahead temporary files since their names tend not to be ↵ | Lennart Poettering | |
stable | |||
2010-09-25 | readahead: make candidate for early OOM kill | Lennart Poettering | |
2010-09-25 | readahead: exit after a maximum runtime | Lennart Poettering | |
2010-09-25 | readahead-replay: delay ready notification until we queued first read | Lennart Poettering | |
2010-09-25 | readahead: disable on low memory machines | Lennart Poettering | |
2010-09-24 | readahead: take file system root on command line | Lennart Poettering | |
2010-09-23 | readahead: normalize logging | Lennart Poettering | |
2010-09-23 | readahead: put limit on files we read ahead | Lennart Poettering | |
2010-09-23 | readahead: add btrfs defrag support | Lennart Poettering | |
2010-09-23 | fanotify: use uint64_t instead of __u64 | Lennart Poettering | |
2010-09-23 | dbus: export number of total failed jobs on D-Bus interface | Lennart Poettering | |
2010-09-23 | readahead: implement minimal readahead logic based on fanotify(), mincore() ↵ | Lennart Poettering | |
and readahead() | |||
2010-09-22 | update fixme | Kay Sievers | |
2010-09-22 | units: add tmp.service to file list | Kay Sievers | |
2010-09-22 | units: enable getty.target by default | Kay Sievers | |
2010-09-22 | units: add optional tmp.service | Kay Sievers | |
2010-09-22 | units: move ctrl-alt-delete, default getty targets from /etc to /lib | Kay Sievers | |
2010-09-22 | units: hwclock support for non-UTC must not be in the default | Kay Sievers | |
2010-09-21 | units: enable var-run + var-lock service by default | Kay Sievers | |
2010-09-21 | units: enable sysctl by default | Kay Sievers | |
2010-09-21 | units: enable hwclock by default | Kay Sievers | |
2010-09-21 | units: always enable random-seed, module-load, vconsole | Kay Sievers | |
2010-09-21 | dbus: add Progress property to introspection | Gustavo Sverzut Barbieri | |
2010-09-21 | tmpwatch: fix typo and remove [Install] | Kay Sievers | |
2010-09-21 | suse: locale + vconsole compat support | Kay Sievers | |
2010-09-21 | tmpwatch: install the unit files | Kay Sievers | |
2010-09-21 | manager: calculate progress value while booting | Lennart Poettering | |
2010-09-21 | manager: measure startup times | Lennart Poettering | |
2010-09-21 | manager: count how many jobs we executed | Lennart Poettering | |
2010-09-21 | units: add default tmpwatch units | Lennart Poettering | |
2010-09-21 | vconsole: make sure we don't merge configuration settings from different sources | Lennart Poettering | |
2010-09-21 | locale: make sure we don't merge configuration settings from different sources | Lennart Poettering | |
2010-09-21 | locale: unset locale vars that are not set any longer | Lennart Poettering | |
2010-09-21 | locale: never use LC_ALL. It's evil. | Lennart Poettering | |
2010-09-21 | service: start Arch daemons | Tom Gundersen | |
Arch does not use proper SysV runlevels. Instead /etc/rc.conf contains an array of daemons to load in a multi-user runlevel, and some dependencies between them. This patch enables this behaviour in SystemD (only when compiled with Arch support), which allows SystemD to be a drop in replacement on Arch (modulo some minor bugs). v2: simplified after suggestion from Lennart | |||
2010-09-21 | socket: Support IPv6-less systems with runtime check. | Fabiano Fidencio | |
This patch introduces socket_ipv6_is_supported() call that checks for IPv6 availability. Code then check for it before using specific calls. In order to be less intrusive, this patch avoids IPv6 entries being parsed at all, this way we don't get such entries in the system and all other code paths are automatically ignored. However an extra check is done at socket_address_listen() to make sure of that. As the number of Netlink messages is not know upfront anymore, loopback-setup.c was refactored to dynamically calculate the sequence number and count. Lennart's suggestions were fixed and squashed with the original patch, that was sent by Gustavo Sverzut Barbieri (barbieri@profusion.mobi). | |||
2010-09-21 | gentoo: locale-setup support | Gustavo Sverzut Barbieri | |
Use locale variables from /etc/profile.env as Gentoo's openrc runscript does (tool that is used by /etc/init.d/* services). |