mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
Recovering from my previous commit
This commit is contained in:
parent
0d2fb76c11
commit
ef0eab514d
@ -23,6 +23,7 @@ L_TARGET := archival.a
|
|||||||
obj-y :=
|
obj-y :=
|
||||||
obj-n :=
|
obj-n :=
|
||||||
obj- :=
|
obj- :=
|
||||||
|
subdir-y := libunarchive
|
||||||
|
|
||||||
obj-$(CONFIG_AR) += ar.o
|
obj-$(CONFIG_AR) += ar.o
|
||||||
obj-$(CONFIG_BUNZIP2) += bunzip2.o
|
obj-$(CONFIG_BUNZIP2) += bunzip2.o
|
||||||
|
@ -23,10 +23,11 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <unistd.h>
|
#include "unarchive.h"
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
|
|
||||||
extern int ar_main(int argc, char **argv)
|
extern int ar_main(int argc, char **argv)
|
||||||
|
@ -10,12 +10,6 @@ bool 'ar' CONFIG_AR
|
|||||||
bool 'bunzip2' CONFIG_BUNZIP2
|
bool 'bunzip2' CONFIG_BUNZIP2
|
||||||
bool 'cpio' CONFIG_CPIO
|
bool 'cpio' CONFIG_CPIO
|
||||||
bool 'dpkg' CONFIG_DPKG
|
bool 'dpkg' CONFIG_DPKG
|
||||||
if [ "$CONFIG_DPKG" = "y" ] ; then
|
|
||||||
bool ' list support' CONFIG_FEATURE_DPKG_LIST
|
|
||||||
if [ "$CONFIG_FEATURE_DPKG_LIST" = "y" ] ; then
|
|
||||||
bool ' short descriptions' CONFIG_FEATURE_DPKG_LIST_DESCRIPTIONS
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
bool 'dpkg_deb' CONFIG_DPKG_DEB
|
bool 'dpkg_deb' CONFIG_DPKG_DEB
|
||||||
bool 'gunzip' CONFIG_GUNZIP
|
bool 'gunzip' CONFIG_GUNZIP
|
||||||
bool 'gzip' CONFIG_GZIP
|
bool 'gzip' CONFIG_GZIP
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include "unarchive.h"
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
|
|
||||||
extern int cpio_main(int argc, char **argv)
|
extern int cpio_main(int argc, char **argv)
|
||||||
|
1570
archival/dpkg.c
1570
archival/dpkg.c
File diff suppressed because it is too large
Load Diff
@ -17,6 +17,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
|
#include "unarchive.h"
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
|
|
||||||
extern int dpkg_deb_main(int argc, char **argv)
|
extern int dpkg_deb_main(int argc, char **argv)
|
||||||
|
@ -47,6 +47,7 @@
|
|||||||
#include <fnmatch.h>
|
#include <fnmatch.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include "unarchive.h"
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
|
|
||||||
#ifdef CONFIG_FEATURE_TAR_CREATE
|
#ifdef CONFIG_FEATURE_TAR_CREATE
|
||||||
|
Loading…
Reference in New Issue
Block a user