Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-12 | shutdown: move shutdown to core since it replaces PID 1 | Lennart Poettering | |
2012-04-12 | umount: fix build | Lennart Poettering | |
2012-04-12 | umount: don't try to umount /dev/console, since we are using it | Lennart Poettering | |
2012-04-12 | build-sys: move a few things into more appropriate places | 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-03-06 | umount: don't try to umount /usr, if we are running from it | Lennart Poettering | |
2011-09-23 | llvm-analyze: change a few things to make llvm-analyze show fewer false ↵ | Lennart Poettering | |
positives | |||
2011-07-04 | umount: log failed umounts only once at the end | Harald Hoyer | |
2011-07-04 | umount: umount, until all umounts failed | Harald Hoyer | |
2011-07-04 | umount: log_info about what we unmounted | Harald Hoyer | |
2011-07-02 | umount: ignore missing /proc/swaps | Michael Olbrich | |
/proc/swaps does not exist when swap is disabled in the kernel. Just report an empty list of mountpoints to unmount in this case. | |||
2011-03-16 | umount: make sure skip_ro is always correctly initialized | Lennart Poettering | |
2011-03-15 | umount: don't try to remount bind mounts ro during shutdown | Lennart Poettering | |
2011-03-14 | umount: assume that a non-existing /dev/loop device means it is already detached | Lennart Poettering | |
2011-01-06 | umount: don't try to detach the dm device the root dir is on, to minimize ↵ | Lennart Poettering | |
warning messages | |||
2010-11-11 | split mount_point_is_api() and mount_point_ignore() | Kay Sievers | |
We should not handle the ignore list as API mounts, as systemd itself never touches them. On Thu, Nov 11, 2010 at 10:34, Andreas Jaeger <aj@novell.com> wrote: > > I noticed for some time that systemd-remount-api-vfs is in the > failed state and found now the following in the log files > > systemd-remount-api-vfs[467]: /bin/mount for /proc/bus/usb exited with exit status 32. > systemd-remount-api-vfs[467]: mount: /proc/bus/usb not mounted already, or bad option > systemd[1]: systemd-remount-api-vfs.service: main process exited, code=exited, status=1 > systemd[1]: Unit systemd-remount-api-vfs.service entered failed state. | |||
2010-10-25 | umount: Make sure / is remounted ro on shutdown | Michael Biebl | |
Increment n_failed in mount_points_list_umount() if we skip /. Otherwise it can happen that mount_points_list_remount_read_only() is not called in umount_all(). | |||
2010-10-19 | fsck: add initial version of fsck and quotacheck wrappers | Lennart Poettering | |
2010-10-14 | shutdown: loop only as long as we manage to unmount/detach devices, give up ↵ | Lennart Poettering | |
immediately when we are stuck | |||
2010-10-14 | umount: disable dm devices by devnode, not by path name | Lennart Poettering | |
2010-10-14 | umount: try to get rid of DM devices | Lennart Poettering | |
2010-10-14 | umount: be a bit more verbose when unable to umount/unswap/delete loopbacks | Lennart Poettering | |
2010-10-14 | umount: simplify code for deactivating loop devices | Lennart Poettering | |
2010-10-14 | umount: properly enumerate loopback devices | Lennart Poettering | |
2010-10-14 | umount: unescape path from /proc/self/mountinfo first, then check against ↵ | Lennart Poettering | |
api mount list | |||
2010-10-07 | shutdown: drop last referral to mp->read_only | Lennart Poettering | |
2010-10-07 | shutdown: drop redundant read_only bool var | Lennart Poettering | |
2010-10-07 | umount: Adding unmount functions to be used in shutdown | Fabiano Fidencio | |
This functions will: - umount all mount points that aren't API - remount read-only all mount points that can't be umounted - umount all swap devices. - detach all loopback devices TODO: - umount dms Mountpoints are being read from /proc/self/mountinfo. Swaps are being read from /proc/swaps. Loop devices from /sys/class/block/loop*. |