Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 libmount check | Andy Wingo | |
2015-04-08 | Remove HAVE_PYTHON bits | Andy Wingo | |
2015-04-08 | Gut Makefile.am | 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-08 | Make autoreconf work again | Andy Wingo | |
2015-04-08 | Change name to elogind | Andy Wingo | |
* configure.ac: Change package name to elogind. | |||
2015-04-08 | remove udev rules | Andy Wingo | |
2015-04-08 | remove udev docs | Andy Wingo | |
2015-04-08 | remove hwdb | Andy Wingo | |
2015-04-08 | remove xorg | Andy Wingo | |
2015-04-08 | remove units | Andy Wingo | |
2015-04-08 | remove tmpfiles | Andy Wingo | |
2015-04-08 | remove tests | Andy Wingo | |
2015-04-08 | remove sysusers.d | Andy Wingo | |
2015-04-08 | remove system-preset | Andy Wingo | |
2015-04-08 | remove sysctl.d | Andy Wingo | |
2015-04-08 | remove shell completion | Andy Wingo | |
2015-04-08 | Remove non-login i18n | Andy Wingo | |
2015-04-08 | remove network | Andy Wingo | |
2015-04-08 | remove non-login things from man | Andy Wingo | |
2015-04-03 | remove sysvinit and var-log docs | Andy Wingo | |
2015-04-03 | remove DISTRO_PORTING | Andy Wingo | |
2015-04-03 | removed catalog | 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 | test: udev, valgrind - track origins of uninitiaziled memory | Tom Gundersen | |
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-03 | update TODO | Lennart Poettering | |
2015-04-03 | units: explicitly require /var, /tmp and /var/tmp to be mounted before ↵ | Lennart Poettering | |
basic.target We support /var, /tmp and /var/tmp on NFS. NFS shares however are by default ordered only before remote-fs.target which is a late-boot service. /var, /tmp, /var/tmp need to be around earlier though, hence explicitly order them before basic.target. Note that this change simply makes explicit what was implicit before, since many early-boot services pulled in parts of /var anyway early. | |||
2015-04-03 | units: explicitly order systemd-user-sessions.service after ↵ | Lennart Poettering | |
nss-user-lookup.target We should not allow logins before NIS/LDAP users are available. | |||
2015-04-03 | units: move After=systemd-hwdb-update.service dependency from udev to ↵ | Lennart Poettering | |
udev-trigger Let's move the hwdb regeneration a bit later. Given that hwdb is non-essential it should be OK to allow udev to run without it until we do the full trigger. http://lists.freedesktop.org/archives/systemd-devel/2015-April/030074.html |