ubootTools: add efivar.py as a tool

`efivar.py` enable a user to manipulate the EFI variable store on disk
that U-Boot uses.

This is useful to prepare a SecureBoot set of variables that can be seeded
inside of U-Boot directly if you do not have a proper OP-TEE on your platform.
This commit is contained in:
Raito Bezarius 2023-09-16 04:03:52 +02:00
parent 50c6120a3e
commit 32104c2fec

View File

@ -15,6 +15,7 @@
, openssl
, swig
, which
, python3
, armTrustedFirmwareAllwinner
, armTrustedFirmwareAllwinnerH6
, armTrustedFirmwareAllwinnerH616
@ -152,6 +153,10 @@ in {
"tools/mkenvimage"
"tools/mkimage"
];
pythonScriptsToInstall = {
"tools/efivar.py" = (python3.withPackages (ps: [ ps.pyopenssl ]));
};
};
ubootA20OlinuxinoLime = buildUBoot {