e45930e890
mkpasswd is in Debian, OTOH cryptpw was added to busybox earlier. Trying to make both camps happy by making those two applets just aliases. They are command-line compatible. We can decide whether we want to drop one (and which one) later. function old new delta cryptpw_main 183 314 +131 static.methods 21 - -21 packed_usage 25707 25648 -59 mkpasswd_main 307 - -307 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 1/1 up/down: 131/-387) Total: -256 bytes
20 lines
571 B
Makefile
20 lines
571 B
Makefile
# Makefile for busybox
|
|
#
|
|
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
|
#
|
|
# Licensed under the GPL v2, see the file LICENSE in this tarball.
|
|
|
|
lib-y:=
|
|
lib-$(CONFIG_ADDGROUP) += addgroup.o
|
|
lib-$(CONFIG_ADDUSER) += adduser.o
|
|
lib-$(CONFIG_CRYPTPW) += cryptpw.o
|
|
lib-$(CONFIG_CHPASSWD) += chpasswd.o
|
|
lib-$(CONFIG_GETTY) += getty.o
|
|
lib-$(CONFIG_LOGIN) += login.o
|
|
lib-$(CONFIG_PASSWD) += passwd.o
|
|
lib-$(CONFIG_SU) += su.o
|
|
lib-$(CONFIG_SULOGIN) += sulogin.o
|
|
lib-$(CONFIG_VLOCK) += vlock.o
|
|
lib-$(CONFIG_DELUSER) += deluser.o
|
|
lib-$(CONFIG_DELGROUP) += deluser.o
|