summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-04-19Remove src/consoleAndy Wingo
2015-04-19Remove src/compat-libsAndy Wingo
2015-04-19Remove src/cgtopAndy Wingo
2015-04-19Remove src/cgroups-agentAndy Wingo
2015-04-19Remove src/cglsAndy Wingo
2015-04-19Remove src/bus-proxydAndy Wingo
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.