Signed-off-by: Tom Rini <trini@konsulko.com>
@ -1,8 +1,6 @@
# SPDX-License-Identifier: GPL-2.0+
#
# (C) Copyright 2017 Linaro Limited
obj-$(CONFIG_LIBAVB) += avb_chain_partition_descriptor.o avb_cmdline.o
obj-$(CONFIG_LIBAVB) += avb_crypto.o avb_footer.o avb_hashtree_descriptor.o
@ -1,7 +1,6 @@
// SPDX-License-Identifier: MIT
/*
* Copyright (C) 2016 The Android Open Source Project
*
* SPDX-License-Identifier: MIT
*/
#include "avb_chain_partition_descriptor.h"
/* SPDX-License-Identifier: MIT */
#if !defined(AVB_INSIDE_LIBAVB_H) && !defined(AVB_COMPILATION)
#include "avb_cmdline.h"
#ifdef AVB_INSIDE_LIBAVB_H
#include "avb_crypto.h"
#include "avb_descriptor.h"
#include "avb_footer.h"
#include "avb_hash_descriptor.h"
#include "avb_hashtree_descriptor.h"
#include "avb_kernel_cmdline_descriptor.h"
#include "avb_property_descriptor.h"
// SPDX-License-Identifier: MIT OR BSD-3-Clause
* SPDX-License-Identifier: (MIT or BSD-3-Clause)
/* Implementation of RSA signature verification which uses a pre-processed
/* SPDX-License-Identifier: MIT OR BSD-3-Clause */
/* Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
@ -1,3 +1,4 @@
// SPDX-License-Identifier: BSD-3-Clause
* Copyright (C) 2005, 2007 Olivier Gay <olivier.gay@a3.epfl.ch>
* All rights reserved.
@ -5,8 +6,6 @@
* FIPS 180-2 SHA-224/256/384/512 implementation
* Last update: 02/02/2007
* Issue date: 04/30/2005
* SPDX-License-Identifier: BSD-3-Clause
#include "avb_sha.h"
#include "avb_slot_verify.h"
#include <stdarg.h>
#include "avb_util.h"
#include "avb_vbmeta_image.h"
* Copyright (C) 2017 The Android Open Source Project
#include "avb_version.h"
#ifndef LIBAVB_H_