blob: 6cab2316ab74c2b8b80e475f12e9537e277771fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
* tar2sqfs.c
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
#include "tar2sqfs.h"
int main(int argc, char **argv)
{
int status = EXIT_FAILURE;
istream_t *input_file = NULL;
sqfs_writer_t sqfs;
process_args(argc, argv);
input_file = istream_open_stdin();
if (input_file == NULL)
return EXIT_FAILURE;
memset(&sqfs, 0, sizeof(sqfs));
if (sqfs_writer_init(&sqfs, &cfg))
goto out_if;
if (process_tarball(input_file, &sqfs))
goto out;
if (fstree_post_process(&sqfs.fs))
goto out;
if (sqfs_writer_finish(&sqfs, &cfg))
goto out;
status = EXIT_SUCCESS;
out:
sqfs_writer_cleanup(&sqfs, status);
out_if:
sqfs_destroy(input_file);
return status;
}
|