mirror of
https://github.com/pygos/pkg-utils.git
synced 2024-11-05 21:27:11 +01:00
6ec11b532e
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
28 lines
461 B
C
28 lines
461 B
C
#ifndef UNPACK_H
|
|
#define UNPACK_H
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <getopt.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
|
|
#include "image_entry.h"
|
|
#include "pkgreader.h"
|
|
#include "command.h"
|
|
#include "util.h"
|
|
|
|
enum {
|
|
FLAG_NO_CHOWN = 0x01,
|
|
FLAG_NO_CHMOD = 0x02,
|
|
};
|
|
|
|
int create_hierarchy(image_entry_t *list);
|
|
|
|
int mkdir_p(const char *path);
|
|
|
|
#endif /* UNPACK_H */
|