Newer
Older
arm-trusted-firmware / tools / fiptool / tbbr_config.h
@dp-arm dp-arm on 3 May 2017 487 bytes Use SPDX license identifiers
/*
 * Copyright (c) 2016, 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"

/* TODO: Update this number as required */
#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__ */