26 lines
436 B
C
26 lines
436 B
C
|
|
/*
|
|
* (C) Copyright 2018, Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _AVB_VERIFY_H
|
|
#define _AVB_VERIFY_H
|
|
|
|
#include <../lib/libavb/libavb.h>
|
|
|
|
#define AVB_MAX_ARGS 1024
|
|
#define VERITY_TABLE_OPT_RESTART "restart_on_corruption"
|
|
#define VERITY_TABLE_OPT_LOGGING "ignore_corruption"
|
|
#define ALLOWED_BUF_ALIGN 8
|
|
|
|
enum avb_boot_state {
|
|
AVB_GREEN,
|
|
AVB_YELLOW,
|
|
AVB_ORANGE,
|
|
AVB_RED,
|
|
};
|
|
|
|
#endif /* _AVB_VERIFY_H */
|