Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-06-27 | logind: automatically deduce seat from display | Lennart Poettering | |
2011-06-24 | logind: hook up PAM module with logind | Lennart Poettering | |
2011-06-21 | logind: implement idle hint logic | Lennart Poettering | |
2011-06-21 | timedated: sync clock down to RTC where necessary | Lennart Poettering | |
2011-06-21 | util: make a couple of files we write atomic | Lennart Poettering | |
2011-06-21 | util: add fopen_temporary() | Lennart Poettering | |
2011-06-21 | util: add pipe_eof() | Lennart Poettering | |
2011-06-21 | util: introduce dirent_is_file() | Lennart Poettering | |
2011-05-24 | rtc in localtime: use settimeofday(NULL, tz) instead of hwclock(8) | Kay Sievers | |
We check for LOCAL in /etc/adjtime and if needed, ask the kernel to apply the timezone delta to the system clock. The very first call of settimeofday() without a time, but a timezone warps the system clock, so that it properly runs in UTC. | |||
2011-05-18 | exec: hangup/reset/deallocate VTs in gettys | Lennart Poettering | |
Explicitly disconnect all clients from a VT when a getty starts/finishes (requires TIOCVHANGUP, available in 2.6.29). Explicitly deallocate getty VTs in order to flush scrollback buffer. Explicitly reset terminals to a defined state before spawning getty. | |||
2011-05-10 | util: include `stdarg.h` | Paul Menzel | |
Otherwise using uClibc compilation (OpenEmbedded [1] with `minimal-uclibc` for `MACHINE = "beagleboard"`) fails with the following error message. | make[1]: Entering directory `/oe/build-minimal-uclibc/minimal-uclibc-dev/work/armv7a-oe-linux-uclibceabi/systemd-v26-r0/git' | CC src/libsystemd_basic_la-util.lo | src/util.c: In function 'acquire_terminal': | src/util.c:2484:29: warning: cast increases required alignment of target type [-Wcast-align] | src/util.c:2497:37: warning: cast increases required alignment of target type [-Wcast-align] | src/util.c: In function 'rename_process': | src/util.c:2905:17: warning: passing argument 1 of 'strncpy' discards qualifiers from pointer target type | /oe/build-minimal-uclibc/minimal-uclibc-dev/sysroots/armv7a-oe-linux-uclibceabi/usr/include/string.h:87:14: note: expected 'char * restrict' but argument is of type 'const char *' | src/util.c: In function 'cpu_set_malloc': | src/util.c:3229:17: warning: implicit declaration of function 'CPU_ALLOC' [-Wimplicit-function-declaration] | src/util.c:3229:25: warning: assignment makes pointer from integer without a cast | src/util.c:3232:17: warning: implicit declaration of function 'CPU_ALLOC_SIZE' [-Wimplicit-function-declaration] | src/util.c:3233:25: warning: implicit declaration of function 'CPU_ZERO_S' [-Wimplicit-function-declaration] | src/util.c:3241:17: warning: implicit declaration of function 'CPU_FREE' [-Wimplicit-function-declaration] | CC src/libsystemd_basic_la-label.lo | In file included from src/label.c:27:0: | src/util.h:358:41: error: expected declaration specifiers or '...' before 'va_list' | make[1]: *** [src/libsystemd_basic_la-label.lo] Error 1 | make[1]: Leaving directory `/oe/build-minimal-uclibc/minimal-uclibc-dev/work/armv7a-oe-linux-uclibceabi/systemd-v26-r0/git' | make: *** [all] Error 2 | + die 'oe_runmake failed' | + oefatal 'oe_runmake failed' | + echo FATAL: 'oe_runmake failed' | FATAL: oe_runmake failed | + exit 1 NOTE: package systemd-v26-r0: task do_compile: Failed ERROR: Function 'do_compile' failed (see /oe/build-minimal-uclibc/minimal-uclibc-dev/work/armv7a-oe-linux-uclibceabi/systemd-v26-r0/temp/log.do_compile.4020 for further information) ERROR: Task 13 (/oe/openembedded/recipes/systemd/systemd_git.bb, do_compile) failed with exit code '1' ERROR: '/oe/openembedded/recipes/systemd/systemd_git.bb' failed [1] http://www.openembedded.org/ | |||
2011-04-28 | util: conf_files_list() return list as parameter | Kay Sievers | |
2011-04-28 | lookup: drop empty directories from search paths | Lennart Poettering | |
2011-04-25 | sysctl.d, binfmt.d, modules-load.d: switch to stacked config dirs in /lib, ↵ | Kay Sievers | |
/etc, /run | |||
2011-04-16 | hostnamed: introduce systemd-hostnamed | Lennart Poettering | |
http://www.freedesktop.org/wiki/Software/systemd/hostnamed | |||
2011-04-16 | hostname: split out hostname validation into util.c | Lennart Poettering | |
2011-04-12 | pam: use /proc/self/loginuid only if we have CAP_AUDIT_CONTROL | Lennart Poettering | |
2011-04-03 | kmsg-syslogd: pass facility value into kmsg | Lennart Poettering | |
2011-03-31 | log: fix shifting of facilities | Lennart Poettering | |
2011-03-30 | status: show status messages unconditionally if plymouth is around | Lennart Poettering | |
2011-03-28 | util: detect page size runtime. | cee1 | |
Some architectures support multiple machine types with diffenent page sizes, and some machine types even support multiple page sizes themselves. | |||
2011-03-14 | util: add detect_container() | Lennart Poettering | |
2011-03-14 | util: properly identify pty devices by their major | Lennart Poettering | |
2011-03-09 | dbus: properly generate UnknownInterface, UnknownProperty and ↵ | Lennart Poettering | |
PropertyReadOnly errors | |||
2011-03-04 | execute: load environment files at time of execution, not when we load the ↵ | Lennart Poettering | |
service configuration https://bugzilla.redhat.com/show_bug.cgi?id=661282 | |||
2011-03-03 | kill: always send SIGCONT after SIGTERM | Lennart Poettering | |
When we kill a process to terminate it make sure to send SIGCONT to ensure it is unpaused and processes the signal. | |||
2011-02-21 | virtualization: beef virtualization code | Lennart Poettering | |
2011-02-17 | util: beef up logic to find ctty name | Lennart Poettering | |
2011-02-15 | shutdown: execute all binaries in /lib/systemd/system-shutdown as last step ↵ | Lennart Poettering | |
before invoking reboot() | |||
2011-02-14 | getty: do not auto-spawn getty's on VC ttys if console=ttyN is used | Lennart Poettering | |
https://bugzilla.redhat.com/show_bug.cgi?id=676885 | |||
2011-02-13 | readahead: disable readahead in virtual machines | Lennart Poettering | |
2011-01-20 | systemctl: highlight failed processes in systemctl status | Lennart Poettering | |
2011-01-05 | fragment: properly handle quotes in assignments in EnvironmentFile= files | Lennart Poettering | |
2010-12-28 | tmpfiles: ensure we do no follow symlinks when cleaning up dirs | Lennart Poettering | |
Patch suggested by Miloslav Trmac. | |||
2010-11-15 | exec: automatically determine right TERM= setting based on tty name | Lennart Poettering | |
2010-11-12 | cryptsetup: hook up tool with ask-password | Lennart Poettering | |
2010-11-10 | manager: parse RD_TIMESTAMP passed from initrd | Lennart Poettering | |
2010-11-10 | cryptsetup: minimal cryptsetup unit generator | Lennart Poettering | |
2010-10-28 | service: unify tstamp serialization code | Lennart Poettering | |
2010-10-27 | mounts: automatically create /dev/stderr and friends early on boot so that ↵ | Lennart Poettering | |
they are around when we run shell scripts before udevd | |||
2010-10-27 | main: move make_null_stdio() to util.c | Lennart Poettering | |
2010-10-27 | unit: serialize active timestamps | Lennart Poettering | |
2010-10-25 | ask-password: add basic tty agent | Lennart Poettering | |
2010-10-22 | systemctl: introduce systemctl kill | Lennart Poettering | |
2010-10-18 | tmpfiles: integrate kay's directory cleanup code and otherwise beef up ↵ | Lennart Poettering | |
tmpfiles quite a bit | |||
2010-10-08 | unit: introduce 'banned' load state for units symlinked to /dev/null | Lennart Poettering | |
2010-10-07 | util: unify implementations of freeze() | Lennart Poettering | |
2010-10-07 | util: Adding a strneq, to represent (!strncmp(a, b, n)) | Fabiano Fidencio | |
As we have streq to repesent (strcmp(a, b) == 0),I'm adding strneq to represent (strncmp(a, b, n) == 0), that will be used in umount.c (at least). | |||
2010-10-05 | fix typo: s/seperat/separat/g | Dave Reisner | |
2010-09-21 | manager: measure startup times | Lennart Poettering | |