~usarinheininga/ubuntuplasma/+git/systemd:eos2.5

Last commit made on 2015-09-25
Get this branch:
git clone -b eos2.5 https://git.launchpad.net/~usarinheininga/ubuntuplasma/+git/systemd

Branch merges

Branch information

Recent commits

9ff1626... by Cosimo Cecchi

Merge pull request #17 from endlessm/shell/5190

Move /.readahead file to /var/.readahead

556dff3... by John Hiesey <email address hidden>

readahead: Move packfile from /.readahead to /var/readahead

This allows the root of the ostree deployment to be immutable
while preserving readahead functionality.

[endlessm/eos-shell#5190]

a65f460... by John Hiesey <email address hidden>

readahead: Add --pack-file agrument to systemd-readahead

This allows the user to specify the pack file path explicitly
instead of having it hardcoded to DIRECTORY/.readahead

If this argument isn't specified, the pack file is stored at
the old location.

4063b1f... by Roddy Shuler

Merge pull request #15 from endlessm/shell/5525

readahead: Explicitly add a mark on /usr when collecting /

b1c4c0a... by Dan Nicholson

readahead: Explicitly add a mark on /usr when collecting /

readahead adds a fanotify mark on /, but that doesn't read into /usr
since it's on a separate mount under ostree. Since /usr contains all the
binaries, readahead without it is pretty useless.

If the root to collect is /, add another mark on /usr. Probably this
should check if it's a separate mount but actually the same device, but
this is good enough for now.

[endlessm/eos-shell#5525]

d08aebd... by Philip Chimento

Merge pull request #13 from endlessm/sdk/3303

Makefile: Move to AM_DISTCHECK_CONFIGURE_FLAGS

[endlessm/eos-sdk#3303]

c14e636... by Sam Spilsbury

Makefile: Move to AM_DISTCHECK_CONFIGURE_FLAGS

Since automake 1.11.2 it is recommended that packages
use AM_DISTCHECK_CONFIGURE_FLAGS instead of
DISTCHECK_CONFIGURE_FLAGS as the latter is intended
to be a user variable.

[endlessm/eos-sdk#3303]

5fb0430... by Jasper St. Pierre

Merge pull request #12 from endlessm/shell/4921

Shell/4921

a7b766e... by David Herrmann

login: share VT-signal handler between sessions

sd-event does not allow multiple handlers for a single signal. However,
logind sets up signal handlers for each session with VT_PROCESS set (that
is, it has an active controller). Therefore, registering multiple such
controllers will fail.

Lets make the VT-handler global, as it's mostly trivial, anyway. This way,
the sessions don't have to take care of that and we can simply acknowledge
all VT-switch requests as we always did.

99646b0... by Olivier Brunel <email address hidden>

login: set_controller should fail if prepare_vt fails

If controllers can expect logind to have "prepared" the VT (e.g. set it to
graphics mode, etc) then TakeControl() should fail if said preparation
failed (and session_restore_vt() was called).

(David: fixed up !CONFIG_VT case and errno-numbers)