diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-20 03:26:15 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-20 03:26:15 +0200 |
commit | 449ddb2d23a63ca4c8cd70d13a070fba87c1fb30 (patch) | |
tree | c202f02f5162b0881a0e8df4a35adc211fcd57b6 /Makefile.am | |
parent | 11ce3427242b8b4ddf638ed5703d69041d719b4c (diff) |
remount: add tool that applies /etc/fstab mount options to all api mounts
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1a7142158d..6266a0ee0c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -74,7 +74,8 @@ rootlibexec_PROGRAMS = \ systemd-random-seed \ systemd-shutdownd \ systemd-auto-console-getty \ - systemd-modules-load + systemd-modules-load \ + systemd-remount-api-vfs noinst_PROGRAMS = \ test-engine \ @@ -175,6 +176,7 @@ nodist_systemunit_DATA = \ units/systemd-shutdownd.service \ units/systemd-auto-console-getty.service \ units/systemd-modules-load.service \ + units/systemd-remount-api-vfs.service \ units/systemd-update-utmp-runlevel.service \ units/systemd-update-utmp-shutdown.service \ units/systemd-random-seed-save.service \ @@ -199,6 +201,7 @@ EXTRA_DIST = \ units/systemd-shutdownd.service.in \ units/systemd-auto-console-getty.service.in \ units/systemd-modules-load.service.in \ + units/systemd-remount-api-vfs.service.in \ units/systemd-update-utmp-runlevel.service.in \ units/systemd-update-utmp-shutdown.service.in \ units/systemd-random-seed-save.service.in \ @@ -586,6 +589,16 @@ systemd_modules_load_CFLAGS = \ systemd_modules_load_LDADD = \ libsystemd-basic.la +systemd_remount_api_vfs_SOURCES = \ + src/remount-api-vfs.c \ + src/mount-setup.c + +systemd_remount_api_vfs_CFLAGS = \ + $(AM_CFLAGS) + +systemd_remount_api_vfs_LDADD = \ + libsystemd-basic.la + systemd_cgroups_agent_SOURCES = \ src/cgroups-agent.c \ src/dbus-common.c |