mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-03 13:41:12 +00:00

This allows us to profile the daemon startup so we can find any plugins taking an inordinate amount of time to start.
40 lines
792 B
C
40 lines
792 B
C
/*
|
|
* Copyright (C) 2021 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#include "fu-mtd-device.h"
|
|
|
|
static void
|
|
fu_plugin_mtd_init(FuPlugin *plugin)
|
|
{
|
|
fu_plugin_add_udev_subsystem(plugin, "mtd");
|
|
fu_plugin_add_device_gtype(plugin, FU_TYPE_MTD_DEVICE);
|
|
}
|
|
|
|
static gboolean
|
|
fu_plugin_mtd_startup(FuPlugin *plugin, FuProgress *progress, GError **error)
|
|
{
|
|
#ifndef HAVE_MTD_USER_H
|
|
g_set_error_literal(error,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_NOT_SUPPORTED,
|
|
"Not compiled with mtd support");
|
|
return FALSE;
|
|
#endif
|
|
return TRUE;
|
|
}
|
|
|
|
void
|
|
fu_plugin_init_vfuncs(FuPluginVfuncs *vfuncs)
|
|
{
|
|
vfuncs->build_hash = FU_BUILD_HASH;
|
|
vfuncs->init = fu_plugin_mtd_init;
|
|
vfuncs->startup = fu_plugin_mtd_startup;
|
|
}
|