Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-13 | polkit: spawn agent in --fallback mode | Lennart Poettering | |
2012-04-13 | watchdog: make watchdog dbus properties writable | Lennart Poettering | |
2012-04-13 | dbus: automatically send out changed events for properties written to | Lennart Poettering | |
2012-04-13 | fix a couple of things found with the llvm static analyzer | Lennart Poettering | |
2012-04-12 | build-sys: move src/linux/ to src/shared/linux | Lennart Poettering | |
2012-04-12 | build-sys: move *-setup out of shared to avoid selinux being pulled in | Lennart Poettering | |
2012-04-12 | move remainig shared stuff to shared/ | Kay Sievers | |
2012-04-12 | main: we want all setup functions to be in files called xxx-setup.[ch] | Lennart Poettering | |
2012-04-12 | hostname-setup: move to core/ | Lennart Poettering | |
2012-04-12 | build-sys: move a few things into more appropriate places | Lennart Poettering | |
2012-04-12 | build-sys: add stub makefiles to make emacs easier to use | Lennart Poettering | |
2012-04-12 | rename machine-id-main.c tomacht the binary and move main.c to core/ | Kay Sievers | |
2012-04-12 | execute: when we can't get the requested rlimit, get the next closest | Lennart Poettering | |
2012-04-12 | move more common files to shared/ and add them to shared.la | Kay Sievers | |
2012-04-12 | relicense to LGPLv2.1 (with exceptions) | Lennart Poettering | |
We finally got the OK from all contributors with non-trivial commits to relicense systemd from GPL2+ to LGPL2.1+. Some udev bits continue to be GPL2+ for now, but we are looking into relicensing them too, to allow free copy/paste of all code within systemd. The bits that used to be MIT continue to be MIT. The big benefit of the relicensing is that closed source code may now link against libsystemd-login.so and friends. | |||
2012-04-11 | polkit: when spawning off agent, wait until the agent is fully initialized | Lennart Poettering | |
2012-04-11 | polkit: temporarily spawn of a polkit agent in terminals for possibly ↵ | Lennart Poettering | |
authenticated operations | |||
2012-04-11 | put acl.la in 'if HAVE_ACL' and rename acl.[ch] to acl-util.[ch] | Kay Sievers | |
2012-04-11 | main: drop container/initrd env vars from inherited set | Lennart Poettering | |
Leave the env vars used in the container/initrd logic set for PID1, but don't inherit them to any children. | |||
2012-04-11 | split selinux label operations out of cgroup-util, socket-util | Kay Sievers | |
This prevents linking of selinux and libdl for another 15 binaries. | |||
2012-04-10 | rename basic.la to shared.la and put selinux deps in shared-selinx.la | Kay Sievers | |
Only 34 of 74 tools need libselinux linked, and libselinux is a pain with its unconditional library constructor. | |||
2012-04-10 | move list.h, macro.h, ioprio.h to shared/ | Kay Sievers | |
2012-04-10 | move pager.[ch] to shared/ | Kay Sievers | |
2012-04-10 | move cgroup-util.[ch] to shared/ | Kay Sievers | |
2012-04-10 | util: move ACL code into internal library | Kay Sievers | |
2012-04-10 | util: move all to shared/ and split external dependencies in separate ↵ | Kay Sievers | |
internal libraries Before: $ ldd /lib/systemd/systemd-timestamp linux-vdso.so.1 => (0x00007fffb05ff000) libselinux.so.1 => /lib64/libselinux.so.1 (0x00007f90aac57000) libcap.so.2 => /lib64/libcap.so.2 (0x00007f90aaa53000) librt.so.1 => /lib64/librt.so.1 (0x00007f90aa84a000) libc.so.6 => /lib64/libc.so.6 (0x00007f90aa494000) /lib64/ld-linux-x86-64.so.2 (0x00007f90aae90000) libdl.so.2 => /lib64/libdl.so.2 (0x00007f90aa290000) libattr.so.1 => /lib64/libattr.so.1 (0x00007f90aa08a000) libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f90a9e6e000) After: $ ldd systemd-timestamp linux-vdso.so.1 => (0x00007fff3cbff000) libselinux.so.1 => /lib64/libselinux.so.1 (0x00007f5eaa1c3000) librt.so.1 => /lib64/librt.so.1 (0x00007f5ea9fbb000) libc.so.6 => /lib64/libc.so.6 (0x00007f5ea9c04000) /lib64/ld-linux-x86-64.so.2 (0x00007f5eaa3fc000) libdl.so.2 => /lib64/libdl.so.2 (0x00007f5ea9a00000) libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f5ea97e4000) |