mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
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:
parent
50c6120a3e
commit
32104c2fec
@ -15,6 +15,7 @@
|
|||||||
, openssl
|
, openssl
|
||||||
, swig
|
, swig
|
||||||
, which
|
, which
|
||||||
|
, python3
|
||||||
, armTrustedFirmwareAllwinner
|
, armTrustedFirmwareAllwinner
|
||||||
, armTrustedFirmwareAllwinnerH6
|
, armTrustedFirmwareAllwinnerH6
|
||||||
, armTrustedFirmwareAllwinnerH616
|
, armTrustedFirmwareAllwinnerH616
|
||||||
@ -152,6 +153,10 @@ in {
|
|||||||
"tools/mkenvimage"
|
"tools/mkenvimage"
|
||||||
"tools/mkimage"
|
"tools/mkimage"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
pythonScriptsToInstall = {
|
||||||
|
"tools/efivar.py" = (python3.withPackages (ps: [ ps.pyopenssl ]));
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootA20OlinuxinoLime = buildUBoot {
|
ubootA20OlinuxinoLime = buildUBoot {
|
||||||
|
Loading…
Reference in New Issue
Block a user