mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
a8f6b99987
function old new delta udhcp_add_binary_option - 94 +94 udhcp_str2nip - 42 +42 len_of_option_as_string 12 10 -2 dhcp_option_lengths 12 10 -2 udhcpc_main 2859 2851 -8 read_nip 42 - -42 xmalloc_optname_optval 590 536 -54 udhcp_str2optset 443 366 -77 udhcp_add_option_string 86 - -86 ------------------------------------------------------------------------------ (add/remove: 2/2 grow/shrink: 0/5 up/down: 136/-271) Total: -135 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
20 lines
619 B
Makefile
20 lines
619 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 packet.o signalpipe.o socket.o
|
|
lib-$(CONFIG_UDHCPD) += common.o packet.o signalpipe.o socket.o
|
|
|
|
lib-$(CONFIG_UDHCPC) += dhcpc.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
|