mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-05 08:36:40 +00:00
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2022 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-firmware.h"
|
|
|
|
#define FU_TYPE_FDT_IMAGE (fu_fdt_image_get_type())
|
|
G_DECLARE_DERIVABLE_TYPE(FuFdtImage, fu_fdt_image, FU, FDT_IMAGE, FuFirmware)
|
|
|
|
struct _FuFdtImageClass {
|
|
FuFirmwareClass parent_class;
|
|
};
|
|
|
|
FuFirmware *
|
|
fu_fdt_image_new(void);
|
|
|
|
GBytes *
|
|
fu_fdt_image_get_attr(FuFdtImage *self, const gchar *key, GError **error);
|
|
gboolean
|
|
fu_fdt_image_get_attr_u32(FuFdtImage *self, const gchar *key, guint32 *val, GError **error);
|
|
gboolean
|
|
fu_fdt_image_get_attr_u64(FuFdtImage *self, const gchar *key, guint64 *val, GError **error);
|
|
gboolean
|
|
fu_fdt_image_get_attr_str(FuFdtImage *self, const gchar *key, gchar **val, GError **error);
|
|
gboolean
|
|
fu_fdt_image_get_attr_strlist(FuFdtImage *self, const gchar *key, gchar ***val, GError **error);
|
|
void
|
|
fu_fdt_image_set_attr(FuFdtImage *self, const gchar *key, GBytes *blob);
|
|
void
|
|
fu_fdt_image_set_attr_uint32(FuFdtImage *self, const gchar *key, guint32 value);
|
|
void
|
|
fu_fdt_image_set_attr_uint64(FuFdtImage *self, const gchar *key, guint64 value);
|
|
void
|
|
fu_fdt_image_set_attr_str(FuFdtImage *self, const gchar *key, const gchar *value);
|
|
void
|
|
fu_fdt_image_set_attr_strlist(FuFdtImage *self, const gchar *key, gchar **value);
|
|
GPtrArray *
|
|
fu_fdt_image_get_attrs(FuFdtImage *self);
|