diff options
author | Denys Vlasenko | 2016-11-23 18:54:59 +0100 |
---|---|---|
committer | Denys Vlasenko | 2016-11-23 18:54:59 +0100 |
commit | f7683cdf83f9eb6793b0be34058dcff92e41252d (patch) | |
tree | 35a9e4b4298e42c049a396254de4d56ada7e7bf8 /networking/udhcp/dhcpd.c | |
parent | a8e52da7742b2bc8a3993f7f7c3c70da8fe79848 (diff) | |
download | busybox-f7683cdf83f9eb6793b0be34058dcff92e41252d.zip busybox-f7683cdf83f9eb6793b0be34058dcff92e41252d.tar.gz |
Convert all udhcp applets to "new style" applet definitions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcpd.c')
-rw-r--r-- | networking/udhcp/dhcpd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/networking/udhcp/dhcpd.c b/networking/udhcp/dhcpd.c index 56116d0..e116ba3 100644 --- a/networking/udhcp/dhcpd.c +++ b/networking/udhcp/dhcpd.c @@ -20,6 +20,11 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +//applet:IF_UDHCPD(APPLET(udhcpd, BB_DIR_USR_SBIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_UDHCPD) += common.o packet.o signalpipe.o socket.o +//kbuild:lib-$(CONFIG_UDHCPD) += dhcpd.o arpping.o +//kbuild:lib-$(CONFIG_FEATURE_UDHCP_RFC3397) += domain_codec.o //usage:#define udhcpd_trivial_usage //usage: "[-fS] [-I ADDR]" IF_FEATURE_UDHCP_PORT(" [-P N]") " [CONFFILE]" |