diff options
author | Rob Landley <rob@landley.net> | 2014-03-25 07:35:56 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-03-25 07:35:56 -0500 |
commit | a2d558151a6308870a30a83bcd1975a80168a515 (patch) | |
tree | 6d320d05431046ec37b2904a8d80b6fb07b803ca | |
parent | 6d796b61a6b9f7ea8c15f26db6dec7e0b9b486fd (diff) | |
download | toybox-a2d558151a6308870a30a83bcd1975a80168a515.tar.gz |
Promote cpio out of pending.
After some waffling I put it in "posix", even though it was last specified in
susv2 (where it was the obsolete 6 byte header entries predating susv4).
LSB specifies it, including the 8 byte header fields, but for the actual
command it just references SUSv2. (LSB isn't so much a standard as Red Hat's
"notes to self".)
-rw-r--r-- | toys/posix/cpio.c (renamed from toys/pending/cpio.c) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/cpio.c b/toys/posix/cpio.c index 18877c1f..900e5128 100644 --- a/toys/pending/cpio.c +++ b/toys/posix/cpio.c @@ -17,7 +17,7 @@ USE_CPIO(NEWTOY(cpio, "duH:i|t|F:o|v(verbose)[!io][!ot]", TOYFLAG_BIN)) config CPIO bool "cpio" - default n + default y help usage: cpio -{o|t|i} [-v] [--verbose] [-F FILE] [ignored: -du -H newc] |