1 // SPDX-License-Identifier: BSD-2-Clause 2 /* 3 * Copyright (c) 1019 Huawei Technologies Co., Ltd 4 */ 5 6 #include <initcall.h> 7 #include <trace.h> 8 9 extern const char conf_str[]; 10 show_conf(void)11static TEE_Result show_conf(void) 12 { 13 #if (TRACE_LEVEL >= TRACE_INFO) 14 IMSG("Contents of conf.mk (decode with 'base64 -d | xz -d'):"); 15 trace_ext_puts(conf_str); 16 #endif 17 return TEE_SUCCESS; 18 } 19 service_init(show_conf); 20