blob: 15411b5a92d56ed09fd3e878c1d8032b8305c114 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Harald Welte5708dbf2008-07-09 22:30:30 +08002/*
3 * (C) Copyright 2007 by OpenMoko, Inc.
4 * Author: Harald Welte <laforge@openmoko.org>
Harald Welte5708dbf2008-07-09 22:30:30 +08005 */
6
7#include <common.h>
Harald Welte5708dbf2008-07-09 22:30:30 +08008#include <command.h>
Simon Glass1a974af2019-08-01 09:46:36 -06009#include <gzip.h>
Harald Welte5708dbf2008-07-09 22:30:30 +080010#include <malloc.h>
Harald Welte5708dbf2008-07-09 22:30:30 +080011
Masahiro Yamada81680332017-01-30 11:12:08 +090012#include "license_data_gz.h"
13#include "license_data_size.h"
14
Simon Glassed38aef2020-05-10 11:40:03 -060015static int do_license(struct cmd_tbl *cmdtp, int flag, int argc,
16 char *const argv[])
Harald Welte5708dbf2008-07-09 22:30:30 +080017{
Masahiro Yamada81680332017-01-30 11:12:08 +090018 char *dst;
19 unsigned long len = data_size;
20 int ret = CMD_RET_SUCCESS;
Harald Welte5708dbf2008-07-09 22:30:30 +080021
Masahiro Yamada81680332017-01-30 11:12:08 +090022 dst = malloc(data_size + 1);
Harald Welte5708dbf2008-07-09 22:30:30 +080023 if (!dst)
Masahiro Yamada81680332017-01-30 11:12:08 +090024 return CMD_RET_FAILURE;
Harald Welte5708dbf2008-07-09 22:30:30 +080025
Masahiro Yamada81680332017-01-30 11:12:08 +090026 ret = gunzip(dst, data_size, (unsigned char *)data_gz, &len);
27 if (ret) {
Harald Welte5708dbf2008-07-09 22:30:30 +080028 printf("Error uncompressing license text\n");
Masahiro Yamada81680332017-01-30 11:12:08 +090029 ret = CMD_RET_FAILURE;
30 goto free;
Harald Welte5708dbf2008-07-09 22:30:30 +080031 }
Masahiro Yamada81680332017-01-30 11:12:08 +090032
33 dst[data_size] = 0;
Harald Welte5708dbf2008-07-09 22:30:30 +080034 puts(dst);
Masahiro Yamada81680332017-01-30 11:12:08 +090035
36free:
Harald Welte5708dbf2008-07-09 22:30:30 +080037 free(dst);
38
Masahiro Yamada81680332017-01-30 11:12:08 +090039 return ret;
Harald Welte5708dbf2008-07-09 22:30:30 +080040}
41
Frans Meulenbroeks7675a092010-07-31 15:01:53 +020042U_BOOT_CMD(
43 license, 1, 1, do_license,
Wolfgang Denkc54781c2009-05-24 17:06:54 +020044 "print GPL license text",
45 ""
46);