mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
92926bc80c
Some platforms may append a FIT image to the U-boot image. This function aids in parsing the FIT image and selecting the correct DTB at runtime. Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
9 lines
206 B
C
9 lines
206 B
C
/*
|
|
* Copyright (C) 2017 Texas Instruments
|
|
* Written by Franklin Cooper Jr. <fcooper@ti.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
int fdt_offset(void *fit);
|
|
void *locate_dtb_in_fit(void *fit);
|