diff options
author | Tom Gundersen <teg@jklm.no> | 2014-01-01 15:16:34 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-01-01 16:26:27 +0100 |
commit | f5be560181d092c5f52a2b819aedcd48220f36ab (patch) | |
tree | 85f5c8da87d1b88bb3a2b5b4d76bd2609a03d80f /Makefile.am | |
parent | f048a16b464295a4e0a4f4c1210f06343ad31231 (diff) |
networkd: add DHCPv4 support
This adds basic DHCPv4 support. Link-sense is enabled unconditionally,
but the plan is to make that configurable.
I tested this in a VM with lots of NICs and over wifi in the various
coffee shops I found this Christmas, but more testing would definitely
be appreciated.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 5f31daa07a..44b69171a4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4056,6 +4056,7 @@ systemd_networkd_LDADD = \ libsystemd-bus-internal.la \ libsystemd-id128-internal.la \ libsystemd-rtnl.la \ + libsystemd-dhcp.la \ libsystemd-shared.la nodist_systemunit_DATA += \ @@ -4081,6 +4082,7 @@ test_network_LDADD = \ libsystemd-id128-internal.la \ libsystemd-daemon-internal.la \ libsystemd-rtnl.la \ + libsystemd-dhcp.la \ libsystemd-shared.la tests += \ |