Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/archival/ar.c


Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/archival/ar.c

    r3232 r3621  
    1717 * http://www.unix-systems.org/single_unix_specification_v2/xcu/ar.html
    1818 */
     19
     20//config:config AR
     21//config:   bool "ar"
     22//config:   default n  # needs to be improved to be able to replace binutils ar
     23//config:   help
     24//config:     ar is an archival utility program used to create, modify, and
     25//config:     extract contents from archives. In practice, it is used exclusively
     26//config:     for object module archives used by compilers.
     27//config:
     28//config:     On an x86 system, the ar applet adds about 1K.
     29//config:
     30//config:     Unless you have a specific application which requires ar, you should
     31//config:     probably say N here: most compilers come with their own ar utility.
     32//config:
     33//config:config FEATURE_AR_LONG_FILENAMES
     34//config:   bool "Support for long filenames (not needed for debs)"
     35//config:   default y
     36//config:   depends on AR
     37//config:   help
     38//config:     By default the ar format can only store the first 15 characters
     39//config:     of the filename, this option removes that limitation.
     40//config:     It supports the GNU ar long filename method which moves multiple long
     41//config:     filenames into a the data section of a new ar entry.
     42//config:
     43//config:config FEATURE_AR_CREATE
     44//config:   bool "Support archive creation"
     45//config:   default y
     46//config:   depends on AR
     47//config:   help
     48//config:     This enables archive creation (-c and -r) with busybox ar.
     49
     50//applet:IF_AR(APPLET(ar, BB_DIR_USR_BIN, BB_SUID_DROP))
     51//kbuild:lib-$(CONFIG_AR) += ar.o
    1952
    2053//usage:#define ar_trivial_usage
Note: See TracChangeset for help on using the changeset viewer.