Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-19 | Remove src/hibernate-resume | Andy Wingo | |
2015-04-19 | Remove src/gudev | Andy Wingo | |
2015-04-19 | Remove src/gpt-auto-generator | Andy Wingo | |
2015-04-19 | Remove src/getty-generator | Andy Wingo | |
2015-04-19 | Remove src/fstab-generator | Andy Wingo | |
2015-04-19 | Remove src/fsckd | Andy Wingo | |
2015-04-19 | Remove src/fsck | Andy Wingo | |
2015-04-19 | Remove src/firstboot | Andy Wingo | |
2015-04-19 | Remove src/escape | Andy Wingo | |
2015-04-19 | Remove src/efi-boot-generator | Andy Wingo | |
2015-04-19 | Remove src/detect-virt | Andy Wingo | |
2015-04-19 | Remove src/delta | Andy Wingo | |
2015-04-19 | Remove src/debug-generator | Andy Wingo | |
2015-04-19 | Remove src/dbus1-generator | Andy Wingo | |
2015-04-19 | Remove src/cryptsetup | Andy Wingo | |
2015-04-19 | Remove src/console | Andy Wingo | |
2015-04-19 | Remove src/compat-libs | Andy Wingo | |
2015-04-19 | Remove src/cgtop | Andy Wingo | |
2015-04-19 | Remove src/cgroups-agent | Andy Wingo | |
2015-04-19 | Remove src/cgls | Andy Wingo | |
2015-04-19 | Remove src/bus-proxyd | Andy Wingo | |
2015-04-19 | Remove src/bootchart | Andy Wingo | |
2015-04-19 | Remove src/boot | Andy Wingo | |
2015-04-19 | Remove src/binfmt | Andy Wingo | |
2015-04-19 | Remove src/backlight | Andy Wingo | |
2015-04-19 | Remove src/ask-password | Andy Wingo | |
2015-04-19 | Remove src/analyze | Andy Wingo | |
2015-04-19 | Remove src/activate | Andy Wingo | |
2015-04-19 | Remove ac-power | Andy Wingo | |
2015-04-19 | Remove src/core | Andy Wingo | |
2015-04-19 | Rename more things to elogind | Andy Wingo | |
2015-04-08 | pam_elogind compiling | Andy Wingo | |
2015-04-08 | Compiling. | Andy Wingo | |
2015-04-08 | Remove libiptc things | Andy Wingo | |
2015-04-08 | Remove SysV compat | Andy Wingo | |
2015-04-08 | Remove utmp things | Andy Wingo | |
2015-04-03 | sd-device: get_sysattr_value - don't leak returned value | Tom Gundersen | |
This was getting leaked as a copy was added to the hashmap, simply add the returned value instead. This should fix CID #1292806. | |||
2015-04-03 | sd-device: initialize variable | Tom Gundersen | |
sysnum would not be initialized if sysname had no trailing digits. | |||
2015-04-03 | networkd: improve logging when processing links and addresses | Tom Gundersen | |
2015-04-03 | bootchart: assorted coding style fixes | Daniel Mack | |
* kill unnecessary {} * add newlines where appropriate * remove dead code * reorder variable declarations * fix more return code logic * pass O_CLOEXEC to all open*() calles * use safe_close() where possible | |||
2015-04-03 | bootchart: kill a bunch of global variables | Daniel Mack | |
This code is in a confusingly bad shape. Kill a bunch of global variables and pass needed variables around in function calls. | |||
2015-04-03 | bootchart: clean up sysfd and proc handling | Daniel Mack | |
Retrieve the handle to procfs in main(), and pass it functions that need it. Kill the global variables. Also, refactor lots of code in svg_title(). There's no need to access any global variables from there either, and we really should return proper errors from there as well. | |||
2015-04-03 | bootchart: clean up control flow logic | Daniel Mack | |
Don't blindly exit() from random functions, but return a proper error and upchain error conditions. squash! bootchart: clean up control flow logic When pread() returns "0", it's a read failure, so don't make the caller think log_sample() was successful, return meaningful error code instead of 0. | |||
2015-04-03 | bootchart: switch to log_* helpers | Daniel Mack | |
Let the helper functions take care of the string message output. | |||
2015-04-02 | timedatectl: many fixes | Lennart Poettering | |
- print runtime warnings with log_warning() - save and restore $TZ properly - Get rid of exit() pseudo error handling - Using time() is OK when connecting to a local container or when showing data about local host, but certainly not for remote hosts. | |||
2015-04-02 | libudev: device - replace by a thin wrapper around sd-device | Tom Gundersen | |
2015-04-02 | fsck: port from libudev to sd-device | Tom Gundersen | |
2015-04-02 | cryptsetup: port from libudev to sd-device | Tom Gundersen | |
2015-04-02 | networkctl: port from libudev to sd-device | Tom Gundersen | |
2015-04-02 | libsystemd: add sd-device library | Tom Gundersen | |
This provides equivalent functionality to libudev-device, but in the systemd style. The public API only caters to creating sd_device objects from for devices that already exist in /sys, there is no support for listening for monitoring events or creating devices received over the udev netlink protocol. The private API contains the necessary functionality to make sd-device a drop-in replacement for libudev-device, but which we would not otherwise want to export. |