123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef UFDT_OVERLAY_H
- #define UFDT_OVERLAY_H
- #include <libfdt.h>
- struct fdt_header *ufdt_install_blob(void *blob, size_t blob_size);
- struct fdt_header *ufdt_apply_overlay(struct fdt_header *main_fdt_header,
- size_t main_fdt_size,
- void *overlay_fdtp,
- size_t overlay_size);
- #endif
|