summaryrefslogtreecommitdiff
path: root/unpack/rdsquashfs.h
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-07-23 16:46:42 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-07-25 22:10:24 +0200
commit2fcf04928a0eaf7332503753a4866a0f2031a50e (patch)
treefb7c5ae31faa21850ec283bd14d91818ceeb21a0 /unpack/rdsquashfs.h
parent22fba34bcd0f2944def234fa684d1c9cc4d65310 (diff)
rdsquashfs: seperate creating of the hierarchy, unpacking and chmod/chown
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'unpack/rdsquashfs.h')
-rw-r--r--unpack/rdsquashfs.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/unpack/rdsquashfs.h b/unpack/rdsquashfs.h
index ed882ff..45c91db 100644
--- a/unpack/rdsquashfs.h
+++ b/unpack/rdsquashfs.h
@@ -48,8 +48,11 @@ typedef struct {
void list_files(tree_node_t *node);
-int restore_fstree(const char *rootdir, tree_node_t *root,
- data_reader_t *data, int flags);
+int restore_fstree(tree_node_t *root, int flags);
+
+int update_tree_attribs(tree_node_t *root, int flags);
+
+int fill_unpacked_files(fstree_t *fs, data_reader_t *data, int flags);
void describe_tree(tree_node_t *root, const char *unpack_root);