summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-04-19Remove src/hibernate-resumeAndy Wingo
2015-04-19Remove src/gudevAndy Wingo
2015-04-19Remove src/gpt-auto-generatorAndy Wingo
2015-04-19Remove src/getty-generatorAndy Wingo
2015-04-19Remove src/fstab-generatorAndy Wingo
2015-04-19Remove src/fsckdAndy Wingo
2015-04-19Remove src/fsckAndy Wingo
2015-04-19Remove src/firstbootAndy Wingo
2015-04-19Remove src/escapeAndy Wingo
2015-04-19Remove src/efi-boot-generatorAndy Wingo
2015-04-19Remove src/detect-virtAndy Wingo
2015-04-19Remove src/deltaAndy Wingo
2015-04-19Remove src/debug-generatorAndy Wingo
2015-04-19Remove src/dbus1-generatorAndy Wingo
2015-04-19Remove src/cryptsetupAndy Wingo
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 libiptc thingsAndy Wingo
2015-04-08Remove SysV compatAndy Wingo
2015-04-08Remove utmp thingsAndy 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-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-02timedatectl: many fixesLennart 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-02libudev: device - replace by a thin wrapper around sd-deviceTom Gundersen
2015-04-02fsck: port from libudev to sd-deviceTom Gundersen
2015-04-02cryptsetup: port from libudev to sd-deviceTom Gundersen
2015-04-02networkctl: port from libudev to sd-deviceTom Gundersen
2015-04-02libsystemd: add sd-device libraryTom 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.