arm-trusted-firmware: add openssl to nativeBuildInputs

This allows for the `fiptool` make target for arm-trusted-firmware to be built.
This commit is contained in:
Jared Baur 2023-06-13 11:37:30 -07:00
parent 9a0134309c
commit 516e9fae60
No known key found for this signature in database

View File

@ -59,8 +59,11 @@ let
depsBuildBuild = [ buildPackages.stdenv.cc ];
# For Cortex-M0 firmware in RK3399
nativeBuildInputs = [ pkgsCross.arm-embedded.stdenv.cc ];
nativeBuildInputs = [
pkgsCross.arm-embedded.stdenv.cc # For Cortex-M0 firmware in RK3399
openssl # For fiptool
];
# Make the new toolchain guessing (from 2.11+) happy
# https://github.com/ARM-software/arm-trusted-firmware/blob/4ec2948fe3f65dba2f19e691e702f7de2949179c/make_helpers/toolchains/rk3399-m0.mk#L21-L22
rk3399-m0-oc = "${pkgsCross.arm-embedded.stdenv.cc.targetPrefix}objcopy";