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

Add a plugin for supporting Android bootloaders which are used on all Qualcomm-based Android devices. These bootloaders are stored on their own partitions and the partition table cannot be altered on Qualcomm devices. This plugin supports any block device, but only exposes the ones defined in the quirk file as updatable.
18 lines
357 B
C
18 lines
357 B
C
/*
|
|
* Copyright (C) 2022 Dylan Van Assche <me@dylanvanassche.be>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_ANDROID_BOOT_DEVICE (fu_android_boot_device_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE(FuAndroidBootDevice,
|
|
fu_android_boot_device,
|
|
FU,
|
|
ANDROID_BOOT_DEVICE,
|
|
FuUdevDevice)
|