summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-04-19Remove src/bootchartAndy Wingo
2015-04-19Remove src/bootAndy Wingo
2015-04-19Remove src/binfmtAndy Wingo
2015-04-19Remove src/backlightAndy Wingo
2015-04-19Remove src/ask-passwordAndy Wingo
2015-04-19Remove src/analyzeAndy Wingo
2015-04-19Remove src/activateAndy Wingo
2015-04-19Remove ac-powerAndy Wingo
2015-04-19Remove src/coreAndy Wingo
2015-04-19Rename more things to elogindAndy Wingo
2015-04-08pam_elogind compilingAndy Wingo
2015-04-08Compiling.Andy Wingo
2015-04-08Remove libmount checkAndy Wingo
2015-04-08Remove HAVE_PYTHON bitsAndy Wingo
2015-04-08Gut Makefile.amAndy Wingo
2015-04-08Remove libiptc thingsAndy Wingo
2015-04-08Remove SysV compatAndy Wingo
2015-04-08Remove utmp thingsAndy Wingo
2015-04-08Make autoreconf work againAndy Wingo
2015-04-08Change name to elogindAndy Wingo
* configure.ac: Change package name to elogind.
2015-04-08remove udev rulesAndy Wingo
2015-04-08remove udev docsAndy Wingo
2015-04-08remove hwdbAndy Wingo
2015-04-08remove xorgAndy Wingo
2015-04-08remove unitsAndy Wingo
2015-04-08remove tmpfilesAndy Wingo
2015-04-08remove testsAndy Wingo
2015-04-08remove sysusers.dAndy Wingo
2015-04-08remove system-presetAndy Wingo
2015-04-08remove sysctl.dAndy Wingo
2015-04-08remove shell completionAndy Wingo
2015-04-08Remove non-login i18nAndy Wingo
2015-04-08remove networkAndy Wingo
2015-04-08remove non-login things from manAndy Wingo
2015-04-03remove sysvinit and var-log docsAndy Wingo
2015-04-03remove DISTRO_PORTINGAndy Wingo
2015-04-03removed catalogAndy Wingo
2015-04-03sd-device: get_sysattr_value - don't leak returned valueTom 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-03test: udev, valgrind - track origins of uninitiaziled memoryTom Gundersen
2015-04-03sd-device: initialize variableTom Gundersen
sysnum would not be initialized if sysname had no trailing digits.
2015-04-03networkd: improve logging when processing links and addressesTom Gundersen
2015-04-03bootchart: assorted coding style fixesDaniel 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-03bootchart: kill a bunch of global variablesDaniel 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-03bootchart: clean up sysfd and proc handlingDaniel 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-03bootchart: clean up control flow logicDaniel 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-03bootchart: switch to log_* helpersDaniel Mack
Let the helper functions take care of the string message output.
2015-04-03update TODOLennart Poettering
2015-04-03units: 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-03units: 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-03units: 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