mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
This tool always verifies the default configuration. It is useful to be able to verify a specific one. Add a command-line flag for this and plumb the logic through. Change-Id: I6022af77965aa107e4693119ac1a0ab750d3fe24 Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Md Sadre Alam <quic_mdalam@quicinc.com>
17 lines
378 B
C
17 lines
378 B
C
/*
|
|
* (C) Copyright 2008 Semihalf
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __FDT_HOST_H__
|
|
#define __FDT_HOST_H__
|
|
|
|
/* Make sure to include u-boot version of libfdt include files */
|
|
#include "../include/libfdt.h"
|
|
#include "../include/fdt_support.h"
|
|
|
|
int fit_check_sign(const void *fit, const void *key,
|
|
const char *fit_uname_config);
|
|
|
|
#endif /* __FDT_HOST_H__ */
|