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/dpkg_deb.c

    r3232 r3621  
    66 */
    77
     8//config:config DPKG_DEB
     9//config:   bool "dpkg_deb"
     10//config:   default n
     11//config:   select FEATURE_SEAMLESS_GZ
     12//config:   help
     13//config:     dpkg-deb unpacks and provides information about Debian archives.
     14//config:
     15//config:     This implementation of dpkg-deb cannot pack archives.
     16//config:
     17//config:     Unless you have a specific application which requires dpkg-deb,
     18//config:     say N here.
     19//config:
     20//config:config FEATURE_DPKG_DEB_EXTRACT_ONLY
     21//config:   bool "Extract only (-x)"
     22//config:   default n
     23//config:   depends on DPKG_DEB
     24//config:   help
     25//config:     This reduces dpkg-deb to the equivalent of
     26//config:     "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none
     27//config:     of the extra dpkg-deb, ar or tar options are needed, they are linked
     28//config:     to internally.
     29
     30//applet:IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, BB_DIR_USR_BIN, BB_SUID_DROP, dpkg_deb))
     31//kbuild:lib-$(CONFIG_DPKG_DEB) += dpkg_deb.o
     32
    833//usage:#define dpkg_deb_trivial_usage
    9 //usage:       "[-cefxX] FILE [argument"
     34//usage:       "[-cefxX] FILE [argument]"
    1035//usage:#define dpkg_deb_full_usage "\n\n"
    1136//usage:       "Perform actions on Debian packages (.debs)\n"
     
    4671    ar_archive->filter = filter_accept_list_reassign;
    4772
     73    llist_add_to(&ar_archive->accept, (char*)"data.tar");
     74    llist_add_to(&control_tar_llist, (char*)"control.tar");
    4875#if ENABLE_FEATURE_SEAMLESS_GZ
    4976    llist_add_to(&ar_archive->accept, (char*)"data.tar.gz");
     
    5784    llist_add_to(&ar_archive->accept, (char*)"data.tar.lzma");
    5885    llist_add_to(&control_tar_llist, (char*)"control.tar.lzma");
     86#endif
     87#if ENABLE_FEATURE_SEAMLESS_XZ
     88    llist_add_to(&ar_archive->accept, (char*)"data.tar.xz");
     89    llist_add_to(&control_tar_llist, (char*)"control.tar.xz");
    5990#endif
    6091
Note: See TracChangeset for help on using the changeset viewer.