diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-05-09 18:02:38 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-05-09 18:02:38 +0200 |
commit | af5bc85dc1297079edc9890861aaa38de0ec30df (patch) | |
tree | 5a96f14d59eed59090f16826d84f4f9f1e501633 /Makefile.am | |
parent | f2b4af1cd4112df6ce56f8fc1e677639935e3d0e (diff) |
loopback: configure lo device on bootup
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index c98ad0b8b9..c38c7d575c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -53,7 +53,8 @@ pkglibexec_PROGRAMS = \ noinst_PROGRAMS = \ test-engine \ test-job-type \ - test-ns + test-ns \ + test-loopback dbuspolicy_DATA = \ org.freedesktop.systemd1.conf @@ -155,6 +156,8 @@ COMMON_SOURCES = \ mount-setup.h \ hostname-setup.c \ hostname-setup.h \ + loopback-setup.c \ + loopback-setup.h \ utmp-wtmp.c \ utmp-wtmp.h \ specifier.c \ @@ -203,6 +206,14 @@ test_ns_SOURCES = \ test_ns_CPPFLAGS = $(systemd_CPPFLAGS) test_ns_LDADD = $(systemd_LDADD) +test_loopback_SOURCES = \ + $(BASIC_SOURCES) \ + test-loopback.c \ + loopback-setup.c + +test_loopback_CPPFLAGS = $(systemd_CPPFLAGS) +test_loopback_LDADD = $(systemd_LDADD) + systemd_logger_SOURCES = \ $(BASIC_SOURCES) \ logger.c |