diff options
author | John Beppu <beppu@lbox.org> | 1999-12-09 18:29:29 +0000 |
---|---|---|
committer | John Beppu <beppu@lbox.org> | 1999-12-09 18:29:29 +0000 |
commit | 7a98606d859ce45bb462f6dba53213ce6fc9c49a (patch) | |
tree | 0986b5702bdc0f7d3dba4a6c7f65119b3967addd /applets | |
parent | 0f5e1ab949193ee7b6228bc66730da9d573464eb (diff) | |
download | busybox-7a98606d859ce45bb462f6dba53213ce6fc9c49a.tar.gz |
Modified to include du
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 67a606cc4..c050acc9c 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -45,6 +45,9 @@ static const struct Applet applets[] = { #ifdef BB_DMESG //bin {"dmesg", dmesg_main}, #endif +#ifdef BB_DU //bin + {"du", du_main}, +#endif #ifdef BB_DUTMP //usr/sbin {"dutmp", dutmp_main}, #endif |