-
Notifications
You must be signed in to change notification settings - Fork 111
/
image-tar.c
52 lines (43 loc) · 1.26 KB
/
image-tar.c
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
41
42
43
44
45
46
47
48
49
50
51
/*
* Copyright (c) 2011 Sascha Hauer <[email protected]>, Pengutronix
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <confuse.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include "genimage.h"
static int tar_generate(struct image *image)
{
int ret;
char *comp = "a";
if (strstr(image->file, ".tar.gz") || strstr(image->file, "tgz"))
comp = "z";
if (strstr(image->file, ".tar.bz2"))
comp = "j";
ret = systemp(image, "%s c%s -f '%s' -C '%s' .",
get_opt("tar"),
comp,
imageoutfile(image), mountpath(image));
return ret;
}
static cfg_opt_t tar_opts[] = {
CFG_END()
};
struct image_handler tar_handler = {
.type = "tar",
.generate = tar_generate,
.opts = tar_opts,
};