summaryrefslogtreecommitdiff
path: root/tools/fiptool/tbbr_config.h
blob: 1fc6cad49d5b75008024411a74d5ef6648e414f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef TBBR_CONFIG_H
#define TBBR_CONFIG_H

#include <stdint.h>

#include <uuid.h>

#define TOC_HEADER_SERIAL_NUMBER 0x12345678

typedef struct toc_entry {
	char         *name;
	uuid_t        uuid;
	char         *cmdline_name;
} toc_entry_t;

extern toc_entry_t toc_entries[];

#endif /* TBBR_CONFIG_H */