1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2007 by OpenMoko, Inc.
4 * Author: Harald Welte <laforge@openmoko.org>
11 #include "license_data_gz.h"
12 #include "license_data_size.h"
14 static int do_license(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
17 unsigned long len = data_size;
18 int ret = CMD_RET_SUCCESS;
20 dst = malloc(data_size + 1);
22 return CMD_RET_FAILURE;
24 ret = gunzip(dst, data_size, (unsigned char *)data_gz, &len);
26 printf("Error uncompressing license text\n");
27 ret = CMD_RET_FAILURE;
41 license, 1, 1, do_license,
42 "print GPL license text",