mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +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
|
||||
, 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 {
|
||||
|
Loading…
Reference in New Issue
Block a user