mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-13 22:48:01 +00:00

This adds the logic for the VBE plugin. It supports reading information from the system to determine which VBE method (a device in fwupd) is in use, then creating those devices to handle the actual update. Verified Boot for Embedded (VBE) relies on FIT files to operate. FIT is a way of packaging multiple images along with information about them. Signed-off-by: Simon Glass <sjg@chromium.org>
25 lines
431 B
Plaintext
25 lines
431 B
Plaintext
/dts-v1/;
|
|
|
|
/*
|
|
* This file can be used to try our a VBE simple update on ROCKPro64 using
|
|
* Debian or some other distribution.
|
|
*/
|
|
|
|
/ {
|
|
compatible = "pine64,rockpro64-v2.1";
|
|
|
|
chosen {
|
|
fwupd {
|
|
firmware {
|
|
compatible = "fwupd,vbe-simple";
|
|
cur-version = "1.2.3";
|
|
bootloader-version = "2022.01";
|
|
storage = "mmc1";
|
|
area-start = <0x0>;
|
|
area-size = <0x1000000>;
|
|
skip-offset = <0x8000>;
|
|
};
|
|
};
|
|
};
|
|
};
|