config: add size information for udhcpc

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2018-12-28 13:03:48 +01:00
parent b097a84d62
commit 83e7e13628
2 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@
# #
config UDHCPD config UDHCPD
bool "udhcpd" bool "udhcpd (21 kb)"
default y default y
select PLATFORM_LINUX select PLATFORM_LINUX
help help
@ -44,7 +44,7 @@ config DHCPD_LEASES_FILE
of the file. Normally it is safe to leave it untouched. of the file. Normally it is safe to leave it untouched.
config DUMPLEASES config DUMPLEASES
bool "dumpleases (6.4 kb)" bool "dumpleases (5.1 kb)"
default y default y
help help
dumpleases displays the leases written out by the udhcpd. dumpleases displays the leases written out by the udhcpd.
@ -52,7 +52,7 @@ config DUMPLEASES
by the absolute time that it expires in seconds from epoch. by the absolute time that it expires in seconds from epoch.
config DHCPRELAY config DHCPRELAY
bool "dhcprelay (5.8 kb)" bool "dhcprelay (5.2 kb)"
default y default y
help help
dhcprelay listens for DHCP requests on one or more interfaces dhcprelay listens for DHCP requests on one or more interfaces

View File

@ -57,8 +57,8 @@ grep ^IF_ include/applets.h \
test -f "$b" || continue test -f "$b" || continue
file=`grep -lF "bool \"$name" $(find -name '*.c') | xargs` file=`grep -lF "bool \"$name" $(find -name '*.c') | xargs`
# so far all such items are in .c files; if need to check Config.* files: # A few applets have their CONFIG items in Config.* files, not .c files:
#test "$file" || file=`grep -lF "bool \"$name" $(find -name 'Config.*') | xargs` test "$file" || file=`grep -lF "bool \"$name" $(find -name 'Config.*') | xargs`
test "$file" || continue test "$file" || continue
#echo "FILE:'$file'" #echo "FILE:'$file'"