forked from pengutronix/genimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
image-file.c
116 lines (95 loc) · 2.47 KB
/
image-file.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
* Copyright (c) 2011 Sascha Hauer <s.hauer@pengutronix.de>, 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 <sys/stat.h>
#include "genimage.h"
struct file {
char *name;
char *infile;
cfg_bool_t copy;
};
static int file_generate(struct image *image)
{
struct file *f = image->handler_priv;
int ret;
if (!f->copy)
return 0;
if (!strcmp(f->infile, imageoutfile(image)))
return 0;
ret = systemp(image, "cp '%s' '%s'", f->infile, imageoutfile(image));
return ret;
}
static int file_setup(struct image *image, cfg_t *cfg)
{
struct file *f = xzalloc(sizeof(*f));
struct stat s;
int ret;
if (cfg)
f->name = cfg_getstr(cfg, "name");
if (!f->name)
f->name = strdup(image->file);
if (f->name[0] == '/')
f->infile = strdup(f->name);
else
xasprintf(&f->infile, "%s/%s", inputpath(), f->name);
ret = stat(f->infile, &s);
if (ret) {
ret = -errno;
image_error(image, "stat(%s) failed: %s\n", f->infile,
strerror(errno));
return ret;
}
if (!image->size)
image->size = s.st_size;
if (cfg)
f->copy = cfg_getbool(cfg, "copy");
else
f->copy = cfg_false;
if (!f->copy) {
free(image->outfile);
image->outfile = strdup(f->infile);
}
ret = parse_holes(image, cfg);
if (ret)
return ret;
image->handler_priv = f;
return 0;
}
static int file_parse(struct image *image, cfg_t *cfg)
{
/* File type images are used for custom types so assume that the
* rootpath is need when a pre/post command is defined */
if (!image->exec_pre && !image->exec_post)
image->empty = cfg_true;
return 0;
}
static cfg_opt_t file_opts[] = {
CFG_STR("name", NULL, CFGF_NONE),
CFG_BOOL("copy", cfg_true, CFGF_NONE),
CFG_STR_LIST("holes", NULL, CFGF_NONE),
CFG_END()
};
struct image_handler file_handler = {
.type = "file",
.generate = file_generate,
.setup = file_setup,
.parse = file_parse,
.opts = file_opts,
};