aboutsummaryrefslogtreecommitdiff
path: root/loginutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-18 22:01:24 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-18 22:01:24 +0200
commit4eed2c6c5092ed95b8ee6d994106c54a9fc6ed3e (patch)
tree133b5d5ad9f27d12a913057540d1e877c4bb1436 /loginutils
parent483405a9b0df6ea14344b1144959be1debef925e (diff)
downloadbusybox-w32-4eed2c6c5092ed95b8ee6d994106c54a9fc6ed3e.tar.gz
busybox-w32-4eed2c6c5092ed95b8ee6d994106c54a9fc6ed3e.tar.bz2
busybox-w32-4eed2c6c5092ed95b8ee6d994106c54a9fc6ed3e.zip
Update menuconfig items with approximate applet sizes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'loginutils')
-rw-r--r--loginutils/add-remove-shell.c4
-rw-r--r--loginutils/addgroup.c2
-rw-r--r--loginutils/adduser.c2
-rw-r--r--loginutils/chpasswd.c2
-rw-r--r--loginutils/cryptpw.c4
-rw-r--r--loginutils/deluser.c4
-rw-r--r--loginutils/getty.c2
-rw-r--r--loginutils/login.c2
-rw-r--r--loginutils/passwd.c2
-rw-r--r--loginutils/su.c2
-rw-r--r--loginutils/sulogin.c2
-rw-r--r--loginutils/vlock.c2
12 files changed, 15 insertions, 15 deletions
diff --git a/loginutils/add-remove-shell.c b/loginutils/add-remove-shell.c
index 54b62c773..eb16c6ead 100644
--- a/loginutils/add-remove-shell.c
+++ b/loginutils/add-remove-shell.c
@@ -8,13 +8,13 @@
8 * for details. 8 * for details.
9 */ 9 */
10//config:config ADD_SHELL 10//config:config ADD_SHELL
11//config: bool "add-shell" 11//config: bool "add-shell (2.8 kb)"
12//config: default y if DESKTOP 12//config: default y if DESKTOP
13//config: help 13//config: help
14//config: Add shells to /etc/shells. 14//config: Add shells to /etc/shells.
15//config: 15//config:
16//config:config REMOVE_SHELL 16//config:config REMOVE_SHELL
17//config: bool "remove-shell" 17//config: bool "remove-shell (2.7 kb)"
18//config: default y if DESKTOP 18//config: default y if DESKTOP
19//config: help 19//config: help
20//config: Remove shells from /etc/shells. 20//config: Remove shells from /etc/shells.
diff --git a/loginutils/addgroup.c b/loginutils/addgroup.c
index 94da4efbb..c02ff10e9 100644
--- a/loginutils/addgroup.c
+++ b/loginutils/addgroup.c
@@ -10,7 +10,7 @@
10 * 10 *
11 */ 11 */
12//config:config ADDGROUP 12//config:config ADDGROUP
13//config: bool "addgroup" 13//config: bool "addgroup (8.2 kb)"
14//config: default y 14//config: default y
15//config: help 15//config: help
16//config: Utility for creating a new group account. 16//config: Utility for creating a new group account.
diff --git a/loginutils/adduser.c b/loginutils/adduser.c
index 40bc816a1..e2818f852 100644
--- a/loginutils/adduser.c
+++ b/loginutils/adduser.c
@@ -8,7 +8,7 @@
8 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
9 */ 9 */
10//config:config ADDUSER 10//config:config ADDUSER
11//config: bool "adduser" 11//config: bool "adduser (15 kb)"
12//config: default y 12//config: default y
13//config: help 13//config: help
14//config: Utility for creating a new user account. 14//config: Utility for creating a new user account.
diff --git a/loginutils/chpasswd.c b/loginutils/chpasswd.c
index baafd35c8..60f54ab01 100644
--- a/loginutils/chpasswd.c
+++ b/loginutils/chpasswd.c
@@ -6,7 +6,7 @@
6 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 6 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
7 */ 7 */
8//config:config CHPASSWD 8//config:config CHPASSWD
9//config: bool "chpasswd" 9//config: bool "chpasswd (18 kb)"
10//config: default y 10//config: default y
11//config: help 11//config: help
12//config: Reads a file of user name and password pairs from standard input 12//config: Reads a file of user name and password pairs from standard input
diff --git a/loginutils/cryptpw.c b/loginutils/cryptpw.c
index 3dc8232e0..75769c813 100644
--- a/loginutils/cryptpw.c
+++ b/loginutils/cryptpw.c
@@ -10,14 +10,14 @@
10 * Licensed under GPLv2, see file LICENSE in this source tree. 10 * Licensed under GPLv2, see file LICENSE in this source tree.
11 */ 11 */
12//config:config CRYPTPW 12//config:config CRYPTPW
13//config: bool "cryptpw" 13//config: bool "cryptpw (14 kb)"
14//config: default y 14//config: default y
15//config: help 15//config: help
16//config: Encrypts the given password with the crypt(3) libc function 16//config: Encrypts the given password with the crypt(3) libc function
17//config: using the given salt. 17//config: using the given salt.
18//config: 18//config:
19//config:config MKPASSWD 19//config:config MKPASSWD
20//config: bool "mkpasswd" 20//config: bool "mkpasswd (15 kb)"
21//config: default y 21//config: default y
22//config: help 22//config: help
23//config: Encrypts the given password with the crypt(3) libc function 23//config: Encrypts the given password with the crypt(3) libc function
diff --git a/loginutils/deluser.c b/loginutils/deluser.c
index fbb1614fb..5b05faf3a 100644
--- a/loginutils/deluser.c
+++ b/loginutils/deluser.c
@@ -9,13 +9,13 @@
9 * Licensed under GPLv2, see file LICENSE in this source tree. 9 * Licensed under GPLv2, see file LICENSE in this source tree.
10 */ 10 */
11//config:config DELUSER 11//config:config DELUSER
12//config: bool "deluser" 12//config: bool "deluser (8.4 kb)"
13//config: default y 13//config: default y
14//config: help 14//config: help
15//config: Utility for deleting a user account. 15//config: Utility for deleting a user account.
16//config: 16//config:
17//config:config DELGROUP 17//config:config DELGROUP
18//config: bool "delgroup" 18//config: bool "delgroup (5.6 kb)"
19//config: default y 19//config: default y
20//config: help 20//config: help
21//config: Utility for deleting a group account. 21//config: Utility for deleting a group account.
diff --git a/loginutils/getty.c b/loginutils/getty.c
index ba6c784a3..d38471a42 100644
--- a/loginutils/getty.c
+++ b/loginutils/getty.c
@@ -22,7 +22,7 @@
22 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 22 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
23 */ 23 */
24//config:config GETTY 24//config:config GETTY
25//config: bool "getty" 25//config: bool "getty (10 kb)"
26//config: default y 26//config: default y
27//config: select FEATURE_SYSLOG 27//config: select FEATURE_SYSLOG
28//config: help 28//config: help
diff --git a/loginutils/login.c b/loginutils/login.c
index be05def09..fbdfd2925 100644
--- a/loginutils/login.c
+++ b/loginutils/login.c
@@ -3,7 +3,7 @@
3 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 3 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
4 */ 4 */
5//config:config LOGIN 5//config:config LOGIN
6//config: bool "login" 6//config: bool "login (24 kb)"
7//config: default y 7//config: default y
8//config: select FEATURE_SYSLOG 8//config: select FEATURE_SYSLOG
9//config: help 9//config: help
diff --git a/loginutils/passwd.c b/loginutils/passwd.c
index b7b7423fd..ea8f07474 100644
--- a/loginutils/passwd.c
+++ b/loginutils/passwd.c
@@ -3,7 +3,7 @@
3 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 3 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
4 */ 4 */
5//config:config PASSWD 5//config:config PASSWD
6//config: bool "passwd" 6//config: bool "passwd (21 kb)"
7//config: default y 7//config: default y
8//config: select FEATURE_SYSLOG 8//config: select FEATURE_SYSLOG
9//config: help 9//config: help
diff --git a/loginutils/su.c b/loginutils/su.c
index 4cce82405..b70696fe7 100644
--- a/loginutils/su.c
+++ b/loginutils/su.c
@@ -5,7 +5,7 @@
5 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 5 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
6 */ 6 */
7//config:config SU 7//config:config SU
8//config: bool "su" 8//config: bool "su (19 kb)"
9//config: default y 9//config: default y
10//config: select FEATURE_SYSLOG 10//config: select FEATURE_SYSLOG
11//config: help 11//config: help
diff --git a/loginutils/sulogin.c b/loginutils/sulogin.c
index 2e32e2bbd..cdc2c8c5a 100644
--- a/loginutils/sulogin.c
+++ b/loginutils/sulogin.c
@@ -5,7 +5,7 @@
5 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 5 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
6 */ 6 */
7//config:config SULOGIN 7//config:config SULOGIN
8//config: bool "sulogin" 8//config: bool "sulogin (17 kb)"
9//config: default y 9//config: default y
10//config: select FEATURE_SYSLOG 10//config: select FEATURE_SYSLOG
11//config: help 11//config: help
diff --git a/loginutils/vlock.c b/loginutils/vlock.c
index 5ba6a8780..e3b701d53 100644
--- a/loginutils/vlock.c
+++ b/loginutils/vlock.c
@@ -16,7 +16,7 @@
16 * It now works with md5, sha1, etc passwords. 16 * It now works with md5, sha1, etc passwords.
17 */ 17 */
18//config:config VLOCK 18//config:config VLOCK
19//config: bool "vlock" 19//config: bool "vlock (17 kb)"
20//config: default y 20//config: default y
21//config: help 21//config: help
22//config: Build the "vlock" applet which allows you to lock (virtual) terminals. 22//config: Build the "vlock" applet which allows you to lock (virtual) terminals.