ucm-imx95: fix firmware parameter collision and update imx-mkimage

Fixed parameter name collision in ucm-imx95-firmware.nix where the
'silicon' parameter conflicted with the nixpkgs silicon package, causing
the wrong AHAB container to be selected. Renamed to 'siliconRev'.

Updated imx-mkimage from lf-6.6.36 to lf-6.6.52-2.2.1 to match the
firmware version expectations (v202409 instead of v202311).
This commit is contained in:
Jörg Thalheim
2025-10-30 14:48:42 +01:00
parent 11ea8b8477
commit 8650454db6
2 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
pkgs,
silicon ? "A0",
siliconRev ? "A0",
...
}:
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out
export SILICON=${silicon}
export SILICON=${siliconRev}
# M7 firmware
echo "Copying M7 firmware..."