mirror of
https://github.com/sheumann/hush.git
synced 2025-01-03 16:29:50 +00:00
501e35c474
function old new delta udhcpc_main 2569 2855 +286 perform_release 122 124 +2 client_background 31 32 +1 init_packet 156 88 -68 send_decline 114 - -114 send_discover 121 - -121 send_select 130 - -130 ------------------------------------------------------------------------------ (add/remove: 0/4 grow/shrink: 3/1 up/down: 289/-433) Total: -144 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
20 lines
648 B
Makefile
20 lines
648 B
Makefile
# Makefile for busybox
|
|
#
|
|
# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
|
#
|
|
# Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
|
#
|
|
|
|
lib-y:=
|
|
|
|
lib-$(CONFIG_UDHCPC) += common.o options.o packet.o signalpipe.o socket.o
|
|
lib-$(CONFIG_UDHCPD) += common.o options.o packet.o signalpipe.o socket.o
|
|
|
|
lib-$(CONFIG_UDHCPC) += dhcpc.o script.o
|
|
lib-$(CONFIG_UDHCPD) += dhcpd.o arpping.o files.o leases.o static_leases.o
|
|
lib-$(CONFIG_DUMPLEASES) += dumpleases.o
|
|
lib-$(CONFIG_DHCPRELAY) += dhcprelay.o
|
|
|
|
lib-$(CONFIG_FEATURE_UDHCPC_ARPING) += arpping.o
|
|
lib-$(CONFIG_FEATURE_UDHCP_RFC3397) += domain_codec.o
|