X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=cmd%2Flicense.c;h=1c0794f09527facd183fa0054388f4970a175bea;hb=HEAD;hp=b07de72d36ca0ccedd148f12f14336b3af53b1d4;hpb=2218c54bc13c8045903afc05d1364439a230da1f;p=u-boot diff --git a/cmd/license.c b/cmd/license.c index b07de72d36..1c0794f095 100644 --- a/cmd/license.c +++ b/cmd/license.c @@ -1,36 +1,40 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007 by OpenMoko, Inc. * Author: Harald Welte - * - * SPDX-License-Identifier: GPL-2.0+ */ #include - -/* COPYING is currently 15951 bytes in size */ -#define LICENSE_MAX 20480 - #include #include -#include -int do_license(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) +#include "license_data_gz.h" +#include "license_data_size.h" + +static int do_license(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { - char *tok, *dst = malloc(LICENSE_MAX); - unsigned long len = LICENSE_MAX; + char *dst; + unsigned long len = data_size; + int ret = CMD_RET_SUCCESS; + dst = malloc(data_size + 1); if (!dst) - return -1; + return CMD_RET_FAILURE; - if (gunzip(dst, LICENSE_MAX, license_gz, &len) != 0) { + ret = gunzip(dst, data_size, (unsigned char *)data_gz, &len); + if (ret) { printf("Error uncompressing license text\n"); - free(dst); - return -1; + ret = CMD_RET_FAILURE; + goto free; } + + dst[data_size] = 0; puts(dst); + +free: free(dst); - return 0; + return ret; } U_BOOT_CMD(