mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ pkgs }:
 | 
						|
let
 | 
						|
  inherit (pkgs.buildPackages) python3;
 | 
						|
  toolchain = pkgs.gccStdenv.cc;
 | 
						|
  binutils = pkgs.gccStdenv.cc.bintools.bintools_bin;
 | 
						|
  cpp = pkgs.gcc;
 | 
						|
in
 | 
						|
pkgs.stdenv.mkDerivation rec {
 | 
						|
  pname = "imx8mp-optee-os";
 | 
						|
  version = "lf-6.12.20-2.0.0";
 | 
						|
 | 
						|
  nativeBuildInputs = [
 | 
						|
    python3
 | 
						|
  ];
 | 
						|
 | 
						|
  enableParallelBuilding = true;
 | 
						|
 | 
						|
  propagatedBuildInputs = with python3.pkgs; [
 | 
						|
    pycryptodomex
 | 
						|
    pyelftools
 | 
						|
    cryptography
 | 
						|
  ];
 | 
						|
 | 
						|
  src = pkgs.fetchgit {
 | 
						|
    url = "https://github.com/nxp-imx/imx-optee-os.git";
 | 
						|
    rev = "87964807d80baf1dcfd89cafc66de34a1cf16bf3";
 | 
						|
    sha256 = "sha256-AMZUMgmmyi5l3BMT84uubwjU0lwNObs9XW6ZCbqfhmc=";
 | 
						|
  };
 | 
						|
 | 
						|
  postPatch = ''
 | 
						|
    substituteInPlace scripts/arm32_sysreg.py \
 | 
						|
      --replace '/usr/bin/env python3' '${python3}/bin/python'
 | 
						|
    substituteInPlace scripts/gen_tee_bin.py \
 | 
						|
      --replace '/usr/bin/env python3' '${python3}/bin/python'
 | 
						|
    substituteInPlace scripts/pem_to_pub_c.py \
 | 
						|
      --replace '/usr/bin/env python3' '${python3}/bin/python'
 | 
						|
    substituteInPlace ta/pkcs11/scripts/verify-helpers.sh \
 | 
						|
      --replace '/usr/bin/env bash' '${pkgs.bash}/bin/bash'
 | 
						|
    substituteInPlace ta/pkcs11/scripts/dump_ec_curve_params.sh \
 | 
						|
      --replace '/usr/bin/env bash' '${pkgs.bash}/bin/bash'
 | 
						|
    substituteInPlace mk/gcc.mk \
 | 
						|
      --replace "\$(CROSS_COMPILE_\$(sm))objcopy" ${binutils}/bin/${toolchain.targetPrefix}objcopy
 | 
						|
    substituteInPlace mk/gcc.mk \
 | 
						|
      --replace "\$(CROSS_COMPILE_\$(sm))objdump" ${binutils}/bin/${toolchain.targetPrefix}objdump
 | 
						|
    substituteInPlace mk/gcc.mk \
 | 
						|
      --replace "\$(CROSS_COMPILE_\$(sm))nm" ${binutils}/bin/${toolchain.targetPrefix}nm
 | 
						|
    substituteInPlace mk/gcc.mk \
 | 
						|
      --replace "\$(CROSS_COMPILE_\$(sm))readelf" ${binutils}/bin/${toolchain.targetPrefix}readelf
 | 
						|
    substituteInPlace mk/gcc.mk \
 | 
						|
      --replace "\$(CROSS_COMPILE_\$(sm))ar" ${binutils}/bin/${toolchain.targetPrefix}ar
 | 
						|
    substituteInPlace mk/gcc.mk \
 | 
						|
      --replace "\$(CROSS_COMPILE_\$(sm))cpp" ${cpp}/bin/cpp
 | 
						|
  '';
 | 
						|
 | 
						|
  makeFlags = [
 | 
						|
    "PLATFORM=imx"
 | 
						|
    "PLATFORM_FLAVOR=mx8mpevk"
 | 
						|
    "CFG_ARM64_core=y"
 | 
						|
    "CFG_TEE_TA_LOG_LEVEL=0"
 | 
						|
    "CFG_TEE_CORE_LOG_LEVEL=0"
 | 
						|
    "CROSS_COMPILE=${toolchain}/bin/${toolchain.targetPrefix}"
 | 
						|
    "CROSS_COMPILE64=${toolchain}/bin/${toolchain.targetPrefix}"
 | 
						|
  ];
 | 
						|
 | 
						|
  installPhase = ''
 | 
						|
    mkdir -p $out
 | 
						|
    cp ./out/arm-plat-imx/core/tee-raw.bin $out/tee.bin
 | 
						|
  '';
 | 
						|
}
 |