diff options
author | Rob Landley <rob@landley.net> | 2008-01-19 17:55:45 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2008-01-19 17:55:45 -0600 |
commit | eb9b8da0698aacd14f5aa0879d2a8e390c0c6c13 (patch) | |
tree | d05c5341b81c43aa68ea135d6e03ab175efb2b9e | |
parent | 2d471cebb6dd4c4eb13f4926733fe2a04e53907a (diff) | |
download | toybox-eb9b8da0698aacd14f5aa0879d2a8e390c0c6c13.tar.gz |
Minor cleanup: move mke2fs options into mke2fs.c.
-rw-r--r-- | toys/mke2fs.c | 3 | ||||
-rw-r--r-- | toys/toylist.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/toys/mke2fs.c b/toys/mke2fs.c index 5b8af52a..e54cb85b 100644 --- a/toys/mke2fs.c +++ b/toys/mke2fs.c @@ -6,7 +6,8 @@ * * Not in SUSv3. -USE_MKE2FS(NEWTOY(mke2fs, MKE2FS_OPTSTRING, TOYFLAG_SBIN)) +// Still to go: "E:jJ:L:m:O:" +USE_MKE2FS(NEWTOY(mke2fs, "<1>2g:Fnqm#N#i#b#", TOYFLAG_SBIN)) config MKE2FS bool "mke2fs" diff --git a/toys/toylist.h b/toys/toylist.h index 74a4619f..135310a5 100644 --- a/toys/toylist.h +++ b/toys/toylist.h @@ -11,9 +11,6 @@ struct df_data { long units; }; -// Still to go: "E:jJ:L:m:O:" -#define MKE2FS_OPTSTRING "<1>2g:Fnqm#N#i#b#" - struct dmesg_data { long level; long size; |