aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
Diffstat (limited to 'archival')
-rw-r--r--archival/Config.src4
-rw-r--r--archival/ar.c20
-rw-r--r--archival/bbunzip.c50
-rw-r--r--archival/bzip2.c20
-rw-r--r--archival/cpio.c20
-rw-r--r--archival/dpkg.c8
-rw-r--r--archival/dpkg_deb.c8
-rw-r--r--archival/gzip.c28
-rw-r--r--archival/lzop.c12
-rw-r--r--archival/rpm.c2
-rw-r--r--archival/rpm2cpio.c2
-rw-r--r--archival/tar.c44
-rw-r--r--archival/unzip.c16
13 files changed, 117 insertions, 117 deletions
diff --git a/archival/Config.src b/archival/Config.src
index 4bb46f167..449914565 100644
--- a/archival/Config.src
+++ b/archival/Config.src
@@ -32,7 +32,7 @@ config FEATURE_LZMA_FAST
default n
depends on UNLZMA || LZCAT || LZMA || FEATURE_SEAMLESS_LZMA
help
- This option reduces decompression time by about 25% at the cost of
- a 1K bigger binary.
+ This option reduces decompression time by about 25% at the cost of
+ a 1K bigger binary.
endmenu
diff --git a/archival/ar.c b/archival/ar.c
index 8e4d81eeb..2886d155b 100644
--- a/archival/ar.c
+++ b/archival/ar.c
@@ -21,29 +21,29 @@
//config: bool "ar (9.5 kb)"
//config: default n # needs to be improved to be able to replace binutils ar
//config: help
-//config: ar is an archival utility program used to create, modify, and
-//config: extract contents from archives. In practice, it is used exclusively
-//config: for object module archives used by compilers.
+//config: ar is an archival utility program used to create, modify, and
+//config: extract contents from archives. In practice, it is used exclusively
+//config: for object module archives used by compilers.
//config:
-//config: Unless you have a specific application which requires ar, you should
-//config: probably say N here: most compilers come with their own ar utility.
+//config: Unless you have a specific application which requires ar, you should
+//config: probably say N here: most compilers come with their own ar utility.
//config:
//config:config FEATURE_AR_LONG_FILENAMES
//config: bool "Support long filenames (not needed for debs)"
//config: default y
//config: depends on AR
//config: help
-//config: By default the ar format can only store the first 15 characters
-//config: of the filename, this option removes that limitation.
-//config: It supports the GNU ar long filename method which moves multiple long
-//config: filenames into a the data section of a new ar entry.
+//config: By default the ar format can only store the first 15 characters
+//config: of the filename, this option removes that limitation.
+//config: It supports the GNU ar long filename method which moves multiple long
+//config: filenames into a the data section of a new ar entry.
//config:
//config:config FEATURE_AR_CREATE
//config: bool "Support archive creation"
//config: default y
//config: depends on AR
//config: help
-//config: This enables archive creation (-c and -r) with busybox ar.
+//config: This enables archive creation (-c and -r) with busybox ar.
//applet:IF_AR(APPLET(ar, BB_DIR_USR_BIN, BB_SUID_DROP))
//kbuild:lib-$(CONFIG_AR) += ar.o
diff --git a/archival/bbunzip.c b/archival/bbunzip.c
index bf18a7485..d2b162d5e 100644
--- a/archival/bbunzip.c
+++ b/archival/bbunzip.c
@@ -240,8 +240,8 @@ char* FAST_FUNC make_new_name_generic(char *filename, const char *expected_ext)
//config: bool "uncompress (7.1 kb)"
//config: default n # ancient
//config: help
-//config: uncompress is used to decompress archives created by compress.
-//config: Not much used anymore, replaced by gzip/gunzip.
+//config: uncompress is used to decompress archives created by compress.
+//config: Not much used anymore, replaced by gzip/gunzip.
//applet:IF_UNCOMPRESS(APPLET(uncompress, BB_DIR_BIN, BB_SUID_DROP))
//kbuild:lib-$(CONFIG_UNCOMPRESS) += bbunzip.o
@@ -316,16 +316,16 @@ int uncompress_main(int argc UNUSED_PARAM, char **argv)
//config: default y
//config: select FEATURE_GZIP_DECOMPRESS
//config: help
-//config: gunzip is used to decompress archives created by gzip.
-//config: You can use the `-t' option to test the integrity of
-//config: an archive, without decompressing it.
+//config: gunzip is used to decompress archives created by gzip.
+//config: You can use the `-t' option to test the integrity of
+//config: an archive, without decompressing it.
//config:
//config:config ZCAT
//config: bool "zcat (25 kb)"
//config: default y
//config: select FEATURE_GZIP_DECOMPRESS
//config: help
-//config: Alias to "gunzip -c".
+//config: Alias to "gunzip -c".
//config:
//config:config FEATURE_GUNZIP_LONG_OPTIONS
//config: bool "Enable long options"
@@ -429,21 +429,21 @@ int gunzip_main(int argc UNUSED_PARAM, char **argv)
//config: default y
//config: select FEATURE_BZIP2_DECOMPRESS
//config: help
-//config: bunzip2 is a compression utility using the Burrows-Wheeler block
-//config: sorting text compression algorithm, and Huffman coding. Compression
-//config: is generally considerably better than that achieved by more
-//config: conventional LZ77/LZ78-based compressors, and approaches the
-//config: performance of the PPM family of statistical compressors.
+//config: bunzip2 is a compression utility using the Burrows-Wheeler block
+//config: sorting text compression algorithm, and Huffman coding. Compression
+//config: is generally considerably better than that achieved by more
+//config: conventional LZ77/LZ78-based compressors, and approaches the
+//config: performance of the PPM family of statistical compressors.
//config:
-//config: Unless you have a specific application which requires bunzip2, you
-//config: should probably say N here.
+//config: Unless you have a specific application which requires bunzip2, you
+//config: should probably say N here.
//config:
//config:config BZCAT
//config: bool "bzcat (8.8 kb)"
//config: default y
//config: select FEATURE_BZIP2_DECOMPRESS
//config: help
-//config: Alias to "bunzip2 -c".
+//config: Alias to "bunzip2 -c".
//applet:IF_BUNZIP2(APPLET(bunzip2, BB_DIR_USR_BIN, BB_SUID_DROP))
// APPLET_ODDNAME:name main location suid_type help
@@ -496,23 +496,23 @@ int bunzip2_main(int argc UNUSED_PARAM, char **argv)
//config: bool "unlzma (8.6 kb)"
//config: default y
//config: help
-//config: unlzma is a compression utility using the Lempel-Ziv-Markov chain
-//config: compression algorithm, and range coding. Compression
-//config: is generally considerably better than that achieved by the bzip2
-//config: compressors.
+//config: unlzma is a compression utility using the Lempel-Ziv-Markov chain
+//config: compression algorithm, and range coding. Compression
+//config: is generally considerably better than that achieved by the bzip2
+//config: compressors.
//config:
//config:config LZCAT
//config: bool "lzcat (8.5 kb)"
//config: default y
//config: help
-//config: Alias to "unlzma -c".
+//config: Alias to "unlzma -c".
//config:
//config:config LZMA
//config: bool "lzma -d"
//config: default y
//config: help
-//config: Enable this option if you want commands like "lzma -d" to work.
-//config: IOW: you'll get lzma applet, but it will always require -d option.
+//config: Enable this option if you want commands like "lzma -d" to work.
+//config: IOW: you'll get lzma applet, but it will always require -d option.
//applet:IF_UNLZMA(APPLET(unlzma, BB_DIR_USR_BIN, BB_SUID_DROP))
// APPLET_ODDNAME:name main location suid_type help
@@ -567,20 +567,20 @@ int unlzma_main(int argc UNUSED_PARAM, char **argv)
//config: bool "unxz (13 kb)"
//config: default y
//config: help
-//config: unxz is a unlzma successor.
+//config: unxz is a unlzma successor.
//config:
//config:config XZCAT
//config: bool "xzcat (13 kb)"
//config: default y
//config: help
-//config: Alias to "unxz -c".
+//config: Alias to "unxz -c".
//config:
//config:config XZ
//config: bool "xz -d"
//config: default y
//config: help
-//config: Enable this option if you want commands like "xz -d" to work.
-//config: IOW: you'll get xz applet, but it will always require -d option.
+//config: Enable this option if you want commands like "xz -d" to work.
+//config: IOW: you'll get xz applet, but it will always require -d option.
//applet:IF_UNXZ(APPLET(unxz, BB_DIR_USR_BIN, BB_SUID_DROP))
// APPLET_ODDNAME:name main location suid_type help
diff --git a/archival/bzip2.c b/archival/bzip2.c
index a115cb6ea..0b9c508df 100644
--- a/archival/bzip2.c
+++ b/archival/bzip2.c
@@ -11,23 +11,23 @@
//config: bool "bzip2 (18 kb)"
//config: default y
//config: help
-//config: bzip2 is a compression utility using the Burrows-Wheeler block
-//config: sorting text compression algorithm, and Huffman coding. Compression
-//config: is generally considerably better than that achieved by more
-//config: conventional LZ77/LZ78-based compressors, and approaches the
-//config: performance of the PPM family of statistical compressors.
+//config: bzip2 is a compression utility using the Burrows-Wheeler block
+//config: sorting text compression algorithm, and Huffman coding. Compression
+//config: is generally considerably better than that achieved by more
+//config: conventional LZ77/LZ78-based compressors, and approaches the
+//config: performance of the PPM family of statistical compressors.
//config:
-//config: Unless you have a specific application which requires bzip2, you
-//config: should probably say N here.
+//config: Unless you have a specific application which requires bzip2, you
+//config: should probably say N here.
//config:
//config:config FEATURE_BZIP2_DECOMPRESS
//config: bool "Enable decompression"
//config: default y
//config: depends on BZIP2 || BUNZIP2 || BZCAT
//config: help
-//config: Enable -d (--decompress) and -t (--test) options for bzip2.
-//config: This will be automatically selected if bunzip2 or bzcat is
-//config: enabled.
+//config: Enable -d (--decompress) and -t (--test) options for bzip2.
+//config: This will be automatically selected if bunzip2 or bzcat is
+//config: enabled.
//applet:IF_BZIP2(APPLET(bzip2, BB_DIR_USR_BIN, BB_SUID_DROP))
//kbuild:lib-$(CONFIG_BZIP2) += bzip2.o
diff --git a/archival/cpio.c b/archival/cpio.c
index 4416348b6..38bab8257 100644
--- a/archival/cpio.c
+++ b/archival/cpio.c
@@ -18,30 +18,30 @@
//config: bool "cpio (14 kb)"
//config: default y
//config: help
-//config: cpio is an archival utility program used to create, modify, and
-//config: extract contents from archives.
-//config: cpio has 110 bytes of overheads for every stored file.
+//config: cpio is an archival utility program used to create, modify, and
+//config: extract contents from archives.
+//config: cpio has 110 bytes of overheads for every stored file.
//config:
-//config: This implementation of cpio can extract cpio archives created in the
-//config: "newc" or "crc" format.
+//config: This implementation of cpio can extract cpio archives created in the
+//config: "newc" or "crc" format.
//config:
-//config: Unless you have a specific application which requires cpio, you
-//config: should probably say N here.
+//config: Unless you have a specific application which requires cpio, you
+//config: should probably say N here.
//config:
//config:config FEATURE_CPIO_O
//config: bool "Support archive creation"
//config: default y
//config: depends on CPIO
//config: help
-//config: This implementation of cpio can create cpio archives in the "newc"
-//config: format only.
+//config: This implementation of cpio can create cpio archives in the "newc"
+//config: format only.
//config:
//config:config FEATURE_CPIO_P
//config: bool "Support passthrough mode"
//config: default y
//config: depends on FEATURE_CPIO_O
//config: help
-//config: Passthrough mode. Rarely used.
+//config: Passthrough mode. Rarely used.
//applet:IF_CPIO(APPLET(cpio, BB_DIR_BIN, BB_SUID_DROP))
//kbuild:lib-$(CONFIG_CPIO) += cpio.o
diff --git a/archival/dpkg.c b/archival/dpkg.c
index 41c8fc5d1..90ad8766c 100644
--- a/archival/dpkg.c
+++ b/archival/dpkg.c
@@ -31,11 +31,11 @@
//config: default y
//config: select FEATURE_SEAMLESS_GZ
//config: help
-//config: dpkg is a medium-level tool to install, build, remove and manage
-//config: Debian packages.
+//config: dpkg is a medium-level tool to install, build, remove and manage
+//config: Debian packages.
//config:
-//config: This implementation of dpkg has a number of limitations,
-//config: you should use the official dpkg if possible.
+//config: This implementation of dpkg has a number of limitations,
+//config: you should use the official dpkg if possible.
//applet:IF_DPKG(APPLET(dpkg, BB_DIR_USR_BIN, BB_SUID_DROP))
//kbuild:lib-$(CONFIG_DPKG) += dpkg.o
diff --git a/archival/dpkg_deb.c b/archival/dpkg_deb.c
index ebbc7f035..029bc4af1 100644
--- a/archival/dpkg_deb.c
+++ b/archival/dpkg_deb.c
@@ -10,12 +10,12 @@
//config: default y
//config: select FEATURE_SEAMLESS_GZ
//config: help
-//config: dpkg-deb unpacks and provides information about Debian archives.
+//config: dpkg-deb unpacks and provides information about Debian archives.
//config:
-//config: This implementation of dpkg-deb cannot pack archives.
+//config: This implementation of dpkg-deb cannot pack archives.
//config:
-//config: Unless you have a specific application which requires dpkg-deb,
-//config: say N here.
+//config: Unless you have a specific application which requires dpkg-deb,
+//config: say N here.
//applet:IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, BB_DIR_USR_BIN, BB_SUID_DROP, dpkg_deb))
diff --git a/archival/gzip.c b/archival/gzip.c
index a883a1fff..4cf34ac28 100644
--- a/archival/gzip.c
+++ b/archival/gzip.c
@@ -41,8 +41,8 @@ aa: 85.1% -- replaced with aa.gz
//config: bool "gzip (19 kb)"
//config: default y
//config: help
-//config: gzip is used to compress files.
-//config: It's probably the most widely used UNIX compression program.
+//config: gzip is used to compress files.
+//config: It's probably the most widely used UNIX compression program.
//config:
//config:config FEATURE_GZIP_LONG_OPTIONS
//config: bool "Enable long options"
@@ -55,30 +55,30 @@ aa: 85.1% -- replaced with aa.gz
//config: range 0 2
//config: depends on GZIP
//config: help
-//config: Enable big memory options for gzip.
-//config: 0: small buffers, small hash-tables
-//config: 1: larger buffers, larger hash-tables
-//config: 2: larger buffers, largest hash-tables
-//config: Larger models may give slightly better compression
+//config: Enable big memory options for gzip.
+//config: 0: small buffers, small hash-tables
+//config: 1: larger buffers, larger hash-tables
+//config: 2: larger buffers, largest hash-tables
+//config: Larger models may give slightly better compression
//config:
//config:config FEATURE_GZIP_LEVELS
//config: bool "Enable compression levels"
//config: default n
//config: depends on GZIP
//config: help
-//config: Enable support for compression levels 4-9. The default level
-//config: is 6. If levels 1-3 are specified, 4 is used.
-//config: If this option is not selected, -N options are ignored and -9
-//config: is used.
+//config: Enable support for compression levels 4-9. The default level
+//config: is 6. If levels 1-3 are specified, 4 is used.
+//config: If this option is not selected, -N options are ignored and -9
+//config: is used.
//config:
//config:config FEATURE_GZIP_DECOMPRESS
//config: bool "Enable decompression"
//config: default y
//config: depends on GZIP || GUNZIP || ZCAT
//config: help
-//config: Enable -d (--decompress) and -t (--test) options for gzip.
-//config: This will be automatically selected if gunzip or zcat is
-//config: enabled.
+//config: Enable -d (--decompress) and -t (--test) options for gzip.
+//config: This will be automatically selected if gunzip or zcat is
+//config: enabled.
//applet:IF_GZIP(APPLET(gzip, BB_DIR_BIN, BB_SUID_DROP))
//kbuild:lib-$(CONFIG_GZIP) += gzip.o
diff --git a/archival/lzop.c b/archival/lzop.c
index 967d4b74d..df18ff170 100644
--- a/archival/lzop.c
+++ b/archival/lzop.c
@@ -29,28 +29,28 @@
//config: bool "lzop (13 kb)"
//config: default y
//config: help
-//config: Lzop compression/decompresion.
+//config: Lzop compression/decompresion.
//config:
//config:config UNLZOP
//config: bool "unlzop (13 kb)"
//config: default n # INCOMPAT: upstream lzop does not provide such tool
//config: help
-//config: Lzop decompresion.
+//config: Lzop decompresion.
//config:
//config:config LZOPCAT
//config: bool "lzopcat (13 kb)"
//config: default n # INCOMPAT: upstream lzop does not provide such tool
//config: help
-//config: Alias to "lzop -dc".
+//config: Alias to "lzop -dc".
//config:
//config:config LZOP_COMPR_HIGH
//config: bool "lzop compression levels 7,8,9 (not very useful)"
//config: default n
//config: depends on LZOP || UNLZOP || LZOPCAT
//config: help
-//config: High levels (7,8,9) of lzop compression. These levels
-//config: are actually slower than gzip at equivalent compression ratios
-//config: and take up 3.2K of code.
+//config: High levels (7,8,9) of lzop compression. These levels
+//config: are actually slower than gzip at equivalent compression ratios
+//config: and take up 3.2K of code.
//applet:IF_LZOP(APPLET(lzop, BB_DIR_BIN, BB_SUID_DROP))
// APPLET_ODDNAME:name main location suid_type help
diff --git a/archival/rpm.c b/archival/rpm.c
index 2974dfc61..98039d499 100644
--- a/archival/rpm.c
+++ b/archival/rpm.c
@@ -11,7 +11,7 @@
//config: bool "rpm (33 kb)"
//config: default y
//config: help
-//config: Mini RPM applet - queries and extracts RPM packages.
+//config: Mini RPM applet - queries and extracts RPM packages.
//applet:IF_RPM(APPLET(rpm, BB_DIR_BIN, BB_SUID_DROP))
//kbuild:lib-$(CONFIG_RPM) += rpm.o
diff --git a/archival/rpm2cpio.c b/archival/rpm2cpio.c
index 9d503be52..3e4a6a249 100644
--- a/archival/rpm2cpio.c
+++ b/archival/rpm2cpio.c
@@ -11,7 +11,7 @@
//config: bool "rpm2cpio (20 kb)"
//config: default y
//config: help
-//config: Converts a RPM file into a CPIO archive.
+//config: Converts a RPM file into a CPIO archive.
//applet:IF_RPM2CPIO(APPLET(rpm2cpio, BB_DIR_USR_BIN, BB_SUID_DROP))
//kbuild:lib-$(CONFIG_RPM2CPIO) += rpm2cpio.o
diff --git a/archival/tar.c b/archival/tar.c
index fcabb0126..0fc574dfd 100644
--- a/archival/tar.c
+++ b/archival/tar.c
@@ -45,9 +45,9 @@
//config: bool "tar (40 kb)"
//config: default y
//config: help
-//config: tar is an archiving program. It's commonly used with gzip to
-//config: create compressed archives. It's probably the most widely used
-//config: UNIX archive program.
+//config: tar is an archiving program. It's commonly used with gzip to
+//config: create compressed archives. It's probably the most widely used
+//config: UNIX archive program.
//config:
//config:config FEATURE_TAR_LONG_OPTIONS
//config: bool "Enable long options"
@@ -64,35 +64,35 @@
//config: default y
//config: depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA || FEATURE_SEAMLESS_XZ)
//config: help
-//config: With this option tar can automatically detect compressed
-//config: tarballs. Currently it works only on files (not pipes etc).
+//config: With this option tar can automatically detect compressed
+//config: tarballs. Currently it works only on files (not pipes etc).
//config:
//config:config FEATURE_TAR_FROM
//config: bool "Enable -X (exclude from) and -T (include from) options)"
//config: default y
//config: depends on TAR
//config: help
-//config: If you enable this option you'll be able to specify
-//config: a list of files to include or exclude from an archive.
+//config: If you enable this option you'll be able to specify
+//config: a list of files to include or exclude from an archive.
//config:
//config:config FEATURE_TAR_OLDGNU_COMPATIBILITY
//config: bool "Support old tar header format"
//config: default y
//config: depends on TAR || DPKG
//config: help
-//config: This option is required to unpack archives created in
-//config: the old GNU format; help to kill this old format by
-//config: repacking your ancient archives with the new format.
+//config: This option is required to unpack archives created in
+//config: the old GNU format; help to kill this old format by
+//config: repacking your ancient archives with the new format.
//config:
//config:config FEATURE_TAR_OLDSUN_COMPATIBILITY
//config: bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
//config: default y
//config: depends on TAR || DPKG
//config: help
-//config: This option is required to unpack archives created by some old
-//config: version of Sun's tar (it was calculating checksum using signed
-//config: arithmetic). It is said to be fixed in newer Sun tar, but "old"
-//config: tarballs still exist.
+//config: This option is required to unpack archives created by some old
+//config: version of Sun's tar (it was calculating checksum using signed
+//config: arithmetic). It is said to be fixed in newer Sun tar, but "old"
+//config: tarballs still exist.
//config:
//config:config FEATURE_TAR_GNU_EXTENSIONS
//config: bool "Support GNU tar extensions (long filenames)"
@@ -104,18 +104,18 @@
//config: default y
//config: depends on TAR && FEATURE_TAR_LONG_OPTIONS
//config: help
-//config: If you enable this option you'll be able to instruct tar to send
-//config: the contents of each extracted file to the standard input of an
-//config: external program.
+//config: If you enable this option you'll be able to instruct tar to send
+//config: the contents of each extracted file to the standard input of an
+//config: external program.
//config:
//config:config FEATURE_TAR_UNAME_GNAME
//config: bool "Enable use of user and group names"
//config: default y
//config: depends on TAR
//config: help
-//config: Enable use of user and group names in tar. This affects contents
-//config: listings (-t) and preserving permissions when unpacking (-p).
-//config: +200 bytes.
+//config: Enable use of user and group names in tar. This affects contents
+//config: listings (-t) and preserving permissions when unpacking (-p).
+//config: +200 bytes.
//config:
//config:config FEATURE_TAR_NOPRESERVE_TIME
//config: bool "Enable -m (do not preserve time) GNU option"
@@ -127,8 +127,8 @@
//config: default n
//config: depends on TAR && SELINUX
//config: help
-//config: With this option busybox supports restoring SELinux labels
-//config: when extracting files from tar archives.
+//config: With this option busybox supports restoring SELinux labels
+//config: when extracting files from tar archives.
//applet:IF_TAR(APPLET(tar, BB_DIR_BIN, BB_SUID_DROP))
//kbuild:lib-$(CONFIG_TAR) += tar.o
diff --git a/archival/unzip.c b/archival/unzip.c
index b618c3617..bb39d954e 100644
--- a/archival/unzip.c
+++ b/archival/unzip.c
@@ -20,20 +20,20 @@
//config: bool "unzip (24 kb)"
//config: default y
//config: help
-//config: unzip will list or extract files from a ZIP archive,
-//config: commonly found on DOS/WIN systems. The default behavior
-//config: (with no options) is to extract the archive into the
-//config: current directory.
+//config: unzip will list or extract files from a ZIP archive,
+//config: commonly found on DOS/WIN systems. The default behavior
+//config: (with no options) is to extract the archive into the
+//config: current directory.
//config:
//config:config FEATURE_UNZIP_CDF
//config: bool "Read and use Central Directory data"
//config: default y
//config: depends on UNZIP
//config: help
-//config: If you know that you only need to deal with simple
-//config: ZIP files without deleted/updated files, SFX archives etc,
-//config: you can reduce code size by unselecting this option.
-//config: To support less trivial ZIPs, say Y.
+//config: If you know that you only need to deal with simple
+//config: ZIP files without deleted/updated files, SFX archives etc,
+//config: you can reduce code size by unselecting this option.
+//config: To support less trivial ZIPs, say Y.
//config:
//config:config FEATURE_UNZIP_BZIP2
//config: bool "Support compression method 12 (bzip2)"