diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-19 02:03:03 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-19 02:03:17 +0200 |
commit | b2423f1f436f847d9fc96a63679be2b5552b6baf (patch) | |
tree | b73ef68fc3335bf43684fa142d8a4e638534d9a3 /Makefile.am | |
parent | 9f24a81068b69e1670d685c4917a5f9f3074d845 (diff) |
modules-load: add systemd-modules-load tool that can load a configured list of modules in /etc/modules.d/ on boot, replacing distro-dependent shell hacks for this
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 4905f2dad1..a2f7e1725e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -73,7 +73,8 @@ rootlibexec_PROGRAMS = \ systemd-update-utmp \ systemd-random-seed \ systemd-shutdownd \ - systemd-auto-console-getty + systemd-auto-console-getty \ + systemd-modules-load noinst_PROGRAMS = \ test-engine \ @@ -140,7 +141,6 @@ dist_systemunit_DATA = \ units/systemd-initctl.socket \ units/systemd-logger.socket \ units/systemd-shutdownd.socket \ - units/systemd-auto-console-getty.service \ units/dev-hugepages.automount \ units/dev-hugepages.mount \ units/dev-mqueue.automount \ @@ -173,6 +173,7 @@ nodist_systemunit_DATA = \ units/systemd-logger.service \ units/systemd-shutdownd.service \ units/systemd-auto-console-getty.service \ + units/systemd-modules-load.service \ units/systemd-update-utmp-runlevel.service \ units/systemd-update-utmp-shutdown.service \ units/systemd-random-seed-save.service \ @@ -196,6 +197,7 @@ EXTRA_DIST = \ units/systemd-logger.service.in \ units/systemd-shutdownd.service.in \ units/systemd-auto-console-getty.service.in \ + units/systemd-modules-load.service.in \ units/systemd-update-utmp-runlevel.service.in \ units/systemd-update-utmp-shutdown.service.in \ units/systemd-random-seed-save.service.in \ @@ -566,6 +568,15 @@ systemd_auto_console_getty_LDADD = \ libsystemd-basic.la \ $(DBUS_LIBS) +systemd_modules_load_SOURCES = \ + src/modules-load.c + +systemd_modules_load_CFLAGS = \ + $(AM_CFLAGS) + +systemd_modules_load_LDADD = \ + libsystemd-basic.la + systemd_cgroups_agent_SOURCES = \ src/cgroups-agent.c \ src/dbus-common.c |