Separate more commands so single.sh can build them standalone.

This commit is contained in:
Rob Landley 2014-09-26 18:42:23 -05:00
parent 08ac30d860
commit e1fa787be8
2 changed files with 7 additions and 4 deletions

View File

@ -28,7 +28,6 @@ config SKELETON
config SKELETON_ALIAS
bool "skeleton_alias"
default n
depends on SKELETON
help
usage: skeleton_alias [-dq] [-b NUMBER]

View File

@ -9,7 +9,7 @@
* and LSB standard command, sha1sum is just a good idea.
USE_MD5SUM(NEWTOY(md5sum, "b", TOYFLAG_USR|TOYFLAG_BIN))
USE_MD5SUM_SHA1SUM(OLDTOY(sha1sum, md5sum, "b", TOYFLAG_USR|TOYFLAG_BIN))
USE_SHA1SUM(NEWTOY(sha1sum, "b", TOYFLAG_USR|TOYFLAG_BIN))
config MD5SUM
bool "md5sum"
@ -23,10 +23,9 @@ config MD5SUM
-b brief (hash only, no filename)
config MD5SUM_SHA1SUM
config SHA1SUM
bool "sha1sum"
default y
depends on MD5SUM
help
usage: sha1sum [FILE]...
@ -241,3 +240,8 @@ void md5sum_main(void)
{
loopfiles(toys.optargs, do_hash);
}
void sha1sum_main(void)
{
md5sum_main();
}