usleep contributed by Nicolas Pitre <nico@cam.org>
-Erik
This commit is contained in:
parent
68a9ea4208
commit
b99ca13261
@ -16,6 +16,7 @@
|
|||||||
and then adjusted a bit by me.
|
and then adjusted a bit by me.
|
||||||
* Added tr and dirname from John Lombardo <john@deltanet.com>
|
* Added tr and dirname from John Lombardo <john@deltanet.com>
|
||||||
* Added echo and test (from me).
|
* Added echo and test (from me).
|
||||||
|
* Added usleep contributed by Nicolas Pitre <nico@cam.org>
|
||||||
* tar wouldn't create directory entries that don't end in '/',
|
* tar wouldn't create directory entries that don't end in '/',
|
||||||
now it does (thanks to Avery Pennarun <apenwarr@worldvisions.ca>)
|
now it does (thanks to Avery Pennarun <apenwarr@worldvisions.ca>)
|
||||||
* Several fixes from Pavel Roskin <pavel_roskin@geocities.com>:
|
* Several fixes from Pavel Roskin <pavel_roskin@geocities.com>:
|
||||||
|
@ -311,6 +311,9 @@ static const struct Applet applets[] = {
|
|||||||
#ifdef BB_UPDATE
|
#ifdef BB_UPDATE
|
||||||
{"update", update_main, _BB_DIR_SBIN},
|
{"update", update_main, _BB_DIR_SBIN},
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef BB_USLEEP
|
||||||
|
{"usleep", usleep_main, _BB_DIR_BIN},
|
||||||
|
#endif
|
||||||
#ifdef BB_WC
|
#ifdef BB_WC
|
||||||
{"wc", wc_main, _BB_DIR_USR_BIN},
|
{"wc", wc_main, _BB_DIR_USR_BIN},
|
||||||
#endif
|
#endif
|
||||||
|
@ -311,6 +311,9 @@ static const struct Applet applets[] = {
|
|||||||
#ifdef BB_UPDATE
|
#ifdef BB_UPDATE
|
||||||
{"update", update_main, _BB_DIR_SBIN},
|
{"update", update_main, _BB_DIR_SBIN},
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef BB_USLEEP
|
||||||
|
{"usleep", usleep_main, _BB_DIR_BIN},
|
||||||
|
#endif
|
||||||
#ifdef BB_WC
|
#ifdef BB_WC
|
||||||
{"wc", wc_main, _BB_DIR_USR_BIN},
|
{"wc", wc_main, _BB_DIR_USR_BIN},
|
||||||
#endif
|
#endif
|
||||||
|
@ -92,6 +92,7 @@
|
|||||||
#define BB_TRUE_FALSE
|
#define BB_TRUE_FALSE
|
||||||
#define BB_TTY
|
#define BB_TTY
|
||||||
#define BB_UPTIME
|
#define BB_UPTIME
|
||||||
|
#define BB_USLEEP
|
||||||
#define BB_WC
|
#define BB_WC
|
||||||
#define BB_WHOAMI
|
#define BB_WHOAMI
|
||||||
#define BB_UMOUNT
|
#define BB_UMOUNT
|
||||||
|
@ -157,6 +157,7 @@ extern int uname_main(int argc, char** argv);
|
|||||||
extern int uptime_main(int argc, char** argv);
|
extern int uptime_main(int argc, char** argv);
|
||||||
extern int uniq_main(int argc, char** argv);
|
extern int uniq_main(int argc, char** argv);
|
||||||
extern int update_main(int argc, char** argv);
|
extern int update_main(int argc, char** argv);
|
||||||
|
extern int usleep_main(int argc, char** argv);
|
||||||
extern int wc_main(int argc, char** argv);
|
extern int wc_main(int argc, char** argv);
|
||||||
extern int whoami_main(int argc, char** argv);
|
extern int whoami_main(int argc, char** argv);
|
||||||
extern int yes_main(int argc, char** argv);
|
extern int yes_main(int argc, char** argv);
|
||||||
|
Loading…
Reference in New Issue
Block a user