diff options
author | midipix <writeonce@midipix.org> | 2020-01-30 18:34:27 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-05-23 05:59:01 +0000 |
commit | 54c29f3214d9ad43bd0eeab1ff025af8bfbf1309 (patch) | |
tree | 9a1e737e852d24ef51d06e03b7899d4671e3e342 /src/skin | |
parent | 8aa3fcd31f72b70bf2ad23bb285f9675e2f17bca (diff) | |
download | tpax-54c29f3214d9ad43bd0eeab1ff025af8bfbf1309.tar.bz2 tpax-54c29f3214d9ad43bd0eeab1ff025af8bfbf1309.tar.xz |
driver: implemented block-size logic.
Diffstat (limited to 'src/skin')
-rw-r--r-- | src/skin/tpax_skin_default.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/skin/tpax_skin_default.c b/src/skin/tpax_skin_default.c index 69179be..dacc9d8 100644 --- a/src/skin/tpax_skin_default.c +++ b/src/skin/tpax_skin_default.c @@ -26,5 +26,13 @@ const struct argv_option tpax_default_options[] = { "pax|cpio|ustar|rustar",0, "archive format [%s]"}, + {"blksize", 'b',TAG_BLKSIZE,ARGV_OPTARG_REQUIRED,0,0,0, + "(non-default) block-size; valid values are " + "in the range of 512 to 32256; keeping " + "the default format-specific block size " + "(5120 for the pax and cpio formats," + " 10240 for the ustar format) " + "is strongly recommended."}, + {0,0,0,0,0,0,0,0} }; |