commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
29 lines
514 B
C
29 lines
514 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2010
|
|
* Linaro LTD, www.linaro.org
|
|
* Author John Rigby <john.rigby@linaro.org>
|
|
* Based on TI's signGP.c
|
|
*/
|
|
|
|
#ifndef _OMAPIMAGE_H_
|
|
#define _OMAPIMAGE_H_
|
|
|
|
struct ch_toc {
|
|
uint32_t section_offset;
|
|
uint32_t section_size;
|
|
uint8_t unused[12];
|
|
uint8_t section_name[12];
|
|
};
|
|
|
|
struct ch_settings {
|
|
uint32_t section_key;
|
|
uint8_t valid;
|
|
uint8_t version;
|
|
uint16_t reserved;
|
|
uint32_t flags;
|
|
};
|
|
|
|
#define KEY_CHSETTINGS 0xC0C0C0C1
|
|
#endif /* _OMAPIMAGE_H_ */
|