File: show_conf.c

package info (click to toggle)
optee-os 4.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,960 kB
  • sloc: ansic: 444,388; asm: 12,922; python: 3,719; makefile: 1,681; sh: 238
file content (19 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-License-Identifier: BSD-2-Clause
/*
 * Copyright (c) 1019 Huawei Technologies Co., Ltd
 */

#include <initcall.h>
#include <trace.h>

extern const char conf_str[];

static TEE_Result show_conf(void)
{
#if (TRACE_LEVEL >= TRACE_INFO)
	IMSG("Contents of conf.mk (decode with 'base64 -d | xz -d'):");
	trace_ext_puts(conf_str);
#endif
	return TEE_SUCCESS;
}
service_init(show_conf);