mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
29a23f9d6c
add host tool "fit_check_sign" which verifies, if a fit image is signed correct. Signed-off-by: Heiko Schocher <hs@denx.de> Cc: Simon Glass <sjg@chromium.org>
16 lines
351 B
C
16 lines
351 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 *working_fdt, const void *key);
|
|
|
|
#endif /* __FDT_HOST_H__ */
|