diff options
author | Rob Landley <rob@landley.net> | 2006-11-25 13:34:51 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-11-25 13:34:51 -0500 |
commit | 58c6c1be60d96df4b7cb8d77625948b0da297144 (patch) | |
tree | fecf653c1fefbc45e5ad534f4e77866122d8eaa1 /toys/toylist.h | |
parent | f06af2bef5fe73c4ff50ed177fab244ed9db9182 (diff) | |
download | toybox-58c6c1be60d96df4b7cb8d77625948b0da297144.tar.gz |
More work on option parsing. "df -t tmpfs" actually seems to work now.
Diffstat (limited to 'toys/toylist.h')
-rw-r--r-- | toys/toylist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/toylist.h b/toys/toylist.h index a0eef1c1..ad749cd2 100644 --- a/toys/toylist.h +++ b/toys/toylist.h @@ -54,7 +54,7 @@ NEWTOY(toybox, NULL, 0) // The rest of these are alphabetical, for binary search. USE_TOYSH(NEWTOY(cd, NULL, TOYFLAG_NOFORK)) -USE_DF(NEWTOY(df, "Pkt:a", TOYFLAG_USR|TOYFLAG_SBIN)) +USE_DF(NEWTOY(df, "Pkt*a", TOYFLAG_USR|TOYFLAG_SBIN)) USE_TOYSH(NEWTOY(exit, NULL, TOYFLAG_NOFORK)) USE_HELLO(NEWTOY(hello, NULL, TOYFLAG_NOFORK|TOYFLAG_USR)) USE_PWD(NEWTOY(pwd, NULL, TOYFLAG_BIN)) |