Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-01-06 | fstab-generator: modernize style | Zbigniew Jędrzejewski-Szmek | |
2013-01-06 | core/path: modernize style | Zbigniew Jędrzejewski-Szmek | |
2013-01-06 | core/mount: modernize style | Zbigniew Jędrzejewski-Szmek | |
2013-01-06 | core/dbus-unit: modernize style | Zbigniew Jędrzejewski-Szmek | |
2013-01-06 | core/manager: modernize style | Zbigniew Jędrzejewski-Szmek | |
2013-01-06 | build-sys: use VALGRIND not __OPTIMIZE__ as condition for valgrind compat | Zbigniew Jędrzejewski-Szmek | |
Actually, one might want to run valgrind even on optimized code. Now the same check is used in the jenkins hash functions and hashtable. | |||
2013-01-06 | build-sys: use recipe for moving libs | Zbigniew Jędrzejewski-Szmek | |
Just avoids repeating the same code a few times. The way that hooks are named is standardized. No functional change. | |||
2013-01-06 | TODO: update | Kay Sievers | |
2013-01-06 | udev: fix net name rules matches | Kay Sievers | |
2013-01-06 | analyze: add .gitignore | Kay Sievers | |
2013-01-06 | udev: enable persistent network device naming | Kay Sievers | |
2013-01-05 | build-sys: use full path to python in scripts | Zbigniew Jędrzejewski-Szmek | |
Commit c4eb236a2c didn't take into account the situation when the user sets e.g. PYTHON=python3 (without the full path). This value would then be used verbatim for PYTHON_BINARY and in she-bang lines in scripts, which is incorrect. To fix this, $PYTHON is passed through which, which expands the path. If $PYTHON_BINARY is desired which is not installed on the build system, then PYTHON_BINARY must be set separately. | |||
2013-01-04 | build-sys: fix message about gintrospection | Zbigniew Jędrzejewski-Szmek | |
When gobject-introspection-devel was not available, the message was missing the yes/no part | |||
2013-01-04 | build-sys: invoke scripts with $PYTHON during build | Zbigniew Jędrzejewski-Szmek | |
Python binary to be used during compilation can be set with ./configure PYTHON=... The she-bang line is removed, since it is not used anymore. | |||
2013-01-04 | systemd-analyze: use specified binary, add --version | Zbigniew Jędrzejewski-Szmek | |
Python binary used in the she-bang line in installed scripts can be set with ./configure PYTHON_BINARY=... Defaults to the same path as python used during compilation. Adding --version makes systemd-analyze behave consistently with the rest of installed programs. The lines in ./configure output are reordered to keep all yes/no lines separate. I think that this makes the output clearer. | |||
2013-01-04 | systemd-analyze: pipe through SED_PROCESS | Zbigniew Jędrzejewski-Szmek | |
To be able to add --version and change python binary. | |||
2013-01-04 | service: fixup after ifdef dropping | Zbigniew Jędrzejewski-Szmek | |
Commit 88516c0 removed one line too much. | |||
2013-01-04 | systemd-analyze: reword comments | Zbigniew Jędrzejewski-Szmek | |
2013-01-04 | build-sys: allow update-hwdb with seperate build dir | Zbigniew Jędrzejewski-Szmek | |
2013-01-04 | build-sys: drop unused $RUNTIME_DIR | Zbigniew Jędrzejewski-Szmek | |
2013-01-04 | build-sys: drop all distribution specfic checks | Lennart Poettering | |
Yay, we now have a completely generic systemd. No distribution specific checks anymore! | |||
2013-01-04 | build-sys: make path of loadkeys/setfont configurable in configure | Lennart Poettering | |
2013-01-04 | service: drop inserv.conf parsing | Lennart Poettering | |
This Suse specific configuration file should really be done in a generator that is shipped downstream by suse. | |||
2013-01-04 | service: drop the per-distro ifdefs in service.c | Lennart Poettering | |
They don't really hurt on other distros, and this allows us to ship the same code on all distros | |||
2013-01-04 | units: always use sulogin in rescue.service | Lennart Poettering | |
sushell makes much less sense than sulogin. If distros want to stick to sushell they should patch this downstream. | |||
2013-01-04 | units: drop distro specific stuff from units | Lennart Poettering | |
Since rc-local is now enabled via the SysV compatibility we should only refer to it based on that too. | |||
2013-01-04 | systemctl: enable chkconfig compat only if chkconfig is found rather than ↵ | Lennart Poettering | |
based on distro | |||
2013-01-04 | fsck: remove distro specific hacks from fsck/quotacheck | Lennart Poettering | |
Move forcefsck file checks under a HAVE_SYSV_COMPAT #ifdef, and warn if this is used. | |||
2013-01-04 | Make gcc a bit quieter | Lennart Poettering | |
2013-01-04 | build-sys: make rc-local support part of SYSV compat | Lennart Poettering | |
This also drops automatic selection of the rc local scripts based on the local distro. Distributions now should specify the paths of the rc-local and halt-local scripts on the configure command line. | |||
2013-01-04 | core: drop support for old per-distro configuration files for console, ↵ | Lennart Poettering | |
hostname, locale, timezone This simplifies the upstream system code quite a bit. If downstream distributions want to maintain compatibility with their old configuration files, they are welcome to do so, but need to maintain this as patches downstream. The burden needs to be on the distributions to maintain differences here. Our suggestion however is to just convert the old configuration files on upgrade, as multiple distributions already do. | |||
2013-01-04 | udev: net_id - append "dev_id" value if needed | Kay Sievers | |
2013-01-04 | udev: set device node permissions only at "add" events | Kay Sievers | |
2013-01-04 | Added globbing support to EnvironmentFile | Pekka Lundstrom | |
This patch allows globbing to be used with EnvironmentFile option. Example: EnvironmentFile=/etc/foo.d/*.conf t. Pekka | |||
2013-01-04 | systemctl: add is-failed | Thomas Hindoe Paaboel Andersen | |
Adds is-failed to join is-active and is-enabled. I grabbed this one from the todo list. Most of the functionality was already there for is-active. I just needed to make check_one_unit take the states to check for as an argument instead of the hardcoded "active" and "reloading". is-failed will return 1 if none of the units given are failed. This is different from is-active which will return 3 if none of the units given are active. It returns 3 with this comment: /* According to LSB: "program is not running" */ As that does not make sense when looking for failed units I simply chose 1 instead. | |||
2013-01-04 | man: fix parameter in systemd-fstab-generator(8) | Michał Bartoszkiewicz | |
There is no parameter named luks.fstab. | |||
2013-01-04 | localed: create /etc/X11/xorg.conf.d if needed | Michał Bartoszkiewicz | |
Use mkdir_p_label instead of mkdir_parents_label, so that the final directory component is created too. | |||
2013-01-03 | correct Macedonian keyboard mapping (X layout is 'mk', not 'mkd') | Adam Williamson | |
2013-01-03 | add Lithuanian keyboard mapping (lt/lt) | Adam Williamson | |
2013-01-03 | add Kazakh keyboard mapping (kazakh/kz) | Adam Williamson | |
2013-01-03 | add Hebrew (Israel) - simple, il/il | Adam Williamson | |
2013-01-03 | French Canadian xlayout is just "ca", not "ca(fr)" any more | Adam Williamson | |
2013-01-03 | add Belarussian mapping: simple, 'by' and 'by' | Adam Williamson | |
2013-01-03 | tmpfiles: Fix file descriptor leak on error | Thomas Jarosch | |
Detected by cppcheck | |||
2013-01-03 | readahead: don't complain that we cannot precache symlinks | Lennart Poettering | |
http://lists.freedesktop.org/archives/systemd-devel/2012-December/007847.html | |||
2013-01-03 | man: clarify that specifiers cannot be used in ExecStart='s first argument | Lennart Poettering | |
2012-12-31 | TODO | Lennart Poettering | |
2012-12-31 | unit: add ConditionACPower= | Lennart Poettering | |
2012-12-31 | analyze: properly parse firmware/loader time and handle times for container ↵ | Lennart Poettering | |
boots correctly | |||
2012-12-31 | TODO | Lennart Poettering | |