Zephyr Project API 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
boot_fdt.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2026 EPAM Systems
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
11
12#ifndef ZEPHYR_INCLUDE_ZEPHYR_SYS_BOOT_FDT_H_
13#define ZEPHYR_INCLUDE_ZEPHYR_SYS_BOOT_FDT_H_
14
15#include <stddef.h>
16#include <stdint.h>
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
42int sys_boot_fdt_copy(uint8_t *dst, size_t dst_size, const uint8_t *src,
43 uint32_t *fdt_size);
44
45#ifdef __cplusplus
46}
47#endif
48
49#endif /* ZEPHYR_INCLUDE_ZEPHYR_SYS_BOOT_FDT_H_ */
int sys_boot_fdt_copy(uint8_t *dst, size_t dst_size, const uint8_t *src, uint32_t *fdt_size)
Validate and copy a boot firmware device tree blob.
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT8_TYPE__ uint8_t
Definition stdint.h:88