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
|
/*
* 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 "genimage.h"
static int jffs2_generate(struct image *image)
{
int ret;
char *extraargs;
extraargs = cfg_getstr(image->imagesec, "extraargs");
ret = systemp(image, "%s --eraseblock=%d %s%s%s -o '%s' %s",
get_opt("mkfsjffs2"),
image->flash_type->pebsize,
image->empty ? "" : "-d '",
image->empty ? "" : mountpath(image),
image->empty ? "" : "'",
imageoutfile(image), extraargs);
return ret;
}
static int jffs2_setup(struct image *image, cfg_t *cfg)
{
if (!image->flash_type) {
image_error(image, "no flash type given\n");
return -EINVAL;
}
return 0;
}
static cfg_opt_t jffs2_opts[] = {
CFG_STR("extraargs", "", CFGF_NONE),
CFG_END()
};
struct image_handler jffs2_handler = {
.type = "jffs2",
.generate = jffs2_generate,
.setup = jffs2_setup,
.opts = jffs2_opts,
};
|