1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2017 Masahiro Yamada <yamada.masahiro@socionext.com>
11 #include "config_data_gz.h"
12 #include "config_data_size.h"
14 static int do_config(struct cmd_tbl *cmdtp, int flag, int argc,
18 unsigned long len = data_size;
19 int ret = CMD_RET_SUCCESS;
21 dst = malloc(data_size + 1);
23 return CMD_RET_FAILURE;
25 ret = gunzip(dst, data_size, (unsigned char *)data_gz, &len);
27 printf("failed to uncompress .config data\n");
28 ret = CMD_RET_FAILURE;
42 config, 1, 1, do_config,