diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-28 13:37:44 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-28 13:37:44 +0100 |
commit | df1ff103c9e0496e7de9528500cddff36701609e (patch) | |
tree | 53f77e9b20a663f6c78c35f0cf80ba41554cb3dd | |
parent | 1476760600eff7c51c78b0ba02f1b08558178289 (diff) | |
download | busybox-w32-df1ff103c9e0496e7de9528500cddff36701609e.tar.gz busybox-w32-df1ff103c9e0496e7de9528500cddff36701609e.tar.bz2 busybox-w32-df1ff103c9e0496e7de9528500cddff36701609e.zip |
config: add size information for three more applets
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/udhcp/Config.src | 2 | ||||
-rwxr-xr-x | size_single_applets.sh | 4 | ||||
-rw-r--r-- | util-linux/fsck_minix.c | 2 | ||||
-rw-r--r-- | util-linux/mkfs_minix.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/networking/udhcp/Config.src b/networking/udhcp/Config.src index e13a3ec82..f16fc0a4f 100644 --- a/networking/udhcp/Config.src +++ b/networking/udhcp/Config.src | |||
@@ -60,7 +60,7 @@ config DHCPRELAY | |||
60 | server. | 60 | server. |
61 | 61 | ||
62 | config UDHCPC | 62 | config UDHCPC |
63 | bool "udhcpc" | 63 | bool "udhcpc (24 kb)" |
64 | default y | 64 | default y |
65 | select PLATFORM_LINUX | 65 | select PLATFORM_LINUX |
66 | help | 66 | help |
diff --git a/size_single_applets.sh b/size_single_applets.sh index 6df5d7bee..4b70e761f 100755 --- a/size_single_applets.sh +++ b/size_single_applets.sh | |||
@@ -56,9 +56,9 @@ grep ^IF_ include/applets.h \ | |||
56 | b="busybox_${app}" | 56 | b="busybox_${app}" |
57 | test -f "$b" || continue | 57 | test -f "$b" || continue |
58 | 58 | ||
59 | file=`grep -lF "bool \"$name" $(find -name '*.c') | xargs` | 59 | file=`grep -l "bool \"$name[\" ]" $(find -name '*.c') | xargs` |
60 | # A few applets have their CONFIG items in Config.* files, not .c files: | 60 | # 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` |
62 | test "$file" || continue | 62 | test "$file" || continue |
63 | #echo "FILE:'$file'" | 63 | #echo "FILE:'$file'" |
64 | 64 | ||
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c index c4612f251..f523da945 100644 --- a/util-linux/fsck_minix.c +++ b/util-linux/fsck_minix.c | |||
@@ -86,7 +86,7 @@ | |||
86 | * enforced (but it's not much fun on a character device :-). | 86 | * enforced (but it's not much fun on a character device :-). |
87 | */ | 87 | */ |
88 | //config:config FSCK_MINIX | 88 | //config:config FSCK_MINIX |
89 | //config: bool "fsck_minix" | 89 | //config: bool "fsck.minix (13 kb)" |
90 | //config: default y | 90 | //config: default y |
91 | //config: help | 91 | //config: help |
92 | //config: The minix filesystem is a nice, small, compact, read-write filesystem | 92 | //config: The minix filesystem is a nice, small, compact, read-write filesystem |
diff --git a/util-linux/mkfs_minix.c b/util-linux/mkfs_minix.c index 69dfcd123..e191acbd0 100644 --- a/util-linux/mkfs_minix.c +++ b/util-linux/mkfs_minix.c | |||
@@ -63,7 +63,7 @@ | |||
63 | * removed getopt based parser and added a hand rolled one. | 63 | * removed getopt based parser and added a hand rolled one. |
64 | */ | 64 | */ |
65 | //config:config MKFS_MINIX | 65 | //config:config MKFS_MINIX |
66 | //config: bool "mkfs_minix" | 66 | //config: bool "mkfs.minix (10 kb)" |
67 | //config: default y | 67 | //config: default y |
68 | //config: select PLATFORM_LINUX | 68 | //config: select PLATFORM_LINUX |
69 | //config: help | 69 | //config: help |