Skip to content

Commit df1ff10

Browse files
author
Denys Vlasenko
committed
config: add size information for three more applets
Signed-off-by: Denys Vlasenko <[email protected]>
1 parent 1476760 commit df1ff10

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

networking/udhcp/Config.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ config DHCPRELAY
6060
server.
6161

6262
config UDHCPC
63-
bool "udhcpc"
63+
bool "udhcpc (24 kb)"
6464
default y
6565
select PLATFORM_LINUX
6666
help

size_single_applets.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ grep ^IF_ include/applets.h \
5656
b="busybox_${app}"
5757
test -f "$b" || continue
5858

59-
file=`grep -lF "bool \"$name" $(find -name '*.c') | xargs`
59+
file=`grep -l "bool \"$name[\" ]" $(find -name '*.c') | xargs`
6060
# A few applets have their CONFIG items in Config.* files, not .c files:
61-
test "$file" || file=`grep -lF "bool \"$name" $(find -name 'Config.*') | xargs`
61+
test "$file" || file=`grep -l "bool \"$name[\" ]" $(find -name 'Config.*') | xargs`
6262
test "$file" || continue
6363
#echo "FILE:'$file'"
6464

util-linux/fsck_minix.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
* enforced (but it's not much fun on a character device :-).
8787
*/
8888
//config:config FSCK_MINIX
89-
//config: bool "fsck_minix"
89+
//config: bool "fsck.minix (13 kb)"
9090
//config: default y
9191
//config: help
9292
//config: The minix filesystem is a nice, small, compact, read-write filesystem

util-linux/mkfs_minix.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* removed getopt based parser and added a hand rolled one.
6464
*/
6565
//config:config MKFS_MINIX
66-
//config: bool "mkfs_minix"
66+
//config: bool "mkfs.minix (10 kb)"
6767
//config: default y
6868
//config: select PLATFORM_LINUX
6969
//config: help

0 commit comments

Comments
 (0)