summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-14core: document that JoinControllers= might be ineffective in initrd usesLennart Poettering
https://bugzilla.redhat.com/show_bug.cgi?id=875531
2013-01-14update TODOLennart Poettering
2013-01-14locale: make sense of "dvorak-alt-intel" X variant in mapping databaseLennart Poettering
https://bugzilla.redhat.com/show_bug.cgi?id=873634
2013-01-13man: localectl - s/set-keyboard/set-keymap/Kay Sievers
2013-01-12service: remove distribution specific comments, the code runs unconditional nowKay Sievers
2013-01-12service: remove distribution specific comments, the code run unconditional nowKay Sievers
2013-01-11nspawn: add --versionZbigniew Jędrzejewski-Szmek
2013-01-11build-sys: use _FORTIFY_SOURCE only if optimizingZbigniew Jędrzejewski-Szmek
Rather then force the user to undefine _FORTIFY_SOURCE, don't define it in the first place if it cannot be used. I'm assuming that -O* can only be sensibly specified in $CFLAGS.
2013-01-11systemctl: honour inhibitors when shutting down or entering sleep stateLennart Poettering
2013-01-11update TODOLennart Poettering
2013-01-11unit: instead of directly loading drop-in configuration snippets use ↵Lennart Poettering
conf_files_list_strv() This has the benefit of allowing the usual overriding/masking knowledge everybody loves so much.
2013-01-11unit: allow extension of unit files with .d/*.conf drop-insLennart Poettering
For all unit files foobar.service we will now read foobar.service.d/*.conf, too. This may be used to override certain unit settings without having to edit unit files directly. This makes it really easy to change specific settings for services without having to edit any unit file: mkdir /etc/systemd/system/avahi-daemon.service.d/ echo -e '[Service]\nNice=99' > /etc/systemd/system/avahi-daemon.service.d/nice.conf systemctl daemon-reload
2013-01-10dbus: duplicate Job.Cancel() as CancelJob() and Snapshot.Remove() as ↵Lennart Poettering
RemoveSnapshot() on the Manager interface For all other object mehtods there are already counterparts on the manager object, as they help us reduce round-trips. So let's complete this, and reduce complexity on the client side a bit. As a side effect this also makes "systemctl snapshot" without arguments work again.
2013-01-10build-sys: do not install to / in 'make distcheck'Zbigniew Jędrzejewski-Szmek
2013-01-10build-sys: fix 'make distcheck' w/o sysvinit compatZbigniew Jędrzejewski-Szmek
EXTRA_DIST must unconditionally contain all source files.
2013-01-10bootchart: fix a -Wshadow warning for "now"Auke Kok
2013-01-10bootchart: Convert malloc/memset to callocAuke Kok
2013-01-10bootchart: Convert !strcmp usage to streqAuke Kok
2013-01-10journald: use automatic cleanupZbigniew Jędrzejewski-Szmek
2013-01-10bootchart: make sure that every read buffer is null terminatedLukas Nykryn
2013-01-10udev: Fix device matching in the accelerometerBastien Nocera
As we were searching by ID_PATH, it would have been possible for us to find a sibling device instead of the device we were looking for. This fixes device matching on the WeTab with the upstream kernel, as it was trying to use the "Asus Laptop extra buttons" device instead of the accelerometer.
2013-01-10update TODOLennart Poettering
2013-01-10dbus: properly serialize calendar timer dataLennart Poettering
As it turns out the bus properties for timer units wre really broken, so let's clean this up for good and properly add calendar timer serialization. We really should get that right before finalizing the bus API documentation in the wiki...
2013-01-10bootchart: tabs to spacesThomas Hindoe Paaboel Andersen
2013-01-10man/systemd.unit.xml: fix typosThomas Hindoe Paaboel Andersen
2013-01-09man/systemd-bootchart.xml: fix typoThomas Hindoe Paaboel Andersen
2013-01-09tabs to spacesThomas Hindoe Paaboel Andersen
Skipped bootchart and various files that looked like they should be kept in sync with external sources.
2013-01-09timedated: remove left-over distribution specific codeKay Sievers
2013-01-09udev: move string copy functions to shared/Kay Sievers
2013-01-09bootchart: check return of fopen before setvbuf in log.cLukas Nykryn
2013-01-09udev: don't call fclose on NULL in is_pci_multifunctionLukas Nykryn
2013-01-08update TODOLennart Poettering
2013-01-08dbus: fix serialization of calendar timersLennart Poettering
2013-01-08update TODOLennart Poettering
2013-01-08bootchart: install missing man page and config fileUmut Tezduyar
2013-01-08udev: net_id - skip stacked network devicesKay Sievers
2013-01-08build-sys: fix spelling of sysvrcndirsystemd/v197Lennart Poettering
2013-01-08update NEWSLennart Poettering
2013-01-08build-sys: bump version and so revisionsLennart Poettering
2013-01-08core: properly initialize kernel timestampLennart Poettering
2013-01-08analyze: add emacs mode headerLennart Poettering
2013-01-08git: ignore bootchart binaryLennart Poettering
2013-01-07build-sys: disable static librariesKay Sievers
2013-01-07Revert "build-sys: remove .la files after installation"Kay Sievers
"make distcheck" fails with: ERROR: files left after uninstall: ./usr/lib64/security/pam_systemd.so ./lib/libnss_myhostname.so.2 ./lib64/python2.7/site-packages/systemd/_journal.so This reverts commit ca25fde748dba7ee74e24dff2db6aff1d9faea00.
2013-01-07bootchart: merge bootchartAuke Kok
Bootchart is renamed to 'systemd-bootchart' and installed as /usr/lib/systemd/systemd-bootchart. The configuration file will reside in /etc/systemd/bootchart.conf.
2013-01-07TODO: updateKay Sievers
2013-01-07update TODOLennart Poettering
2013-01-07build-sys: fix help text for --disable-myhostnameLennart Poettering
2013-01-07build-sys: remove .la files after installationZbigniew Jędrzejewski-Szmek
Define KEEP_LA_FILES to keep them. The hook is repeated because both install-exec-hook and install-data-hook can install libraries and with parallel make it's not possible to predict which one will run first. http://lists.freedesktop.org/archives/systemd-devel/2013-January/008016.html tl;dr: Libtool .la files are not very useful for linking linux libraries.
2013-01-07localectl: use automatic cleanupZbigniew Jędrzejewski-Szmek
set_freep() is added to automatize set_free().