Skip to content

Commit 8650454

Browse files
committed
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).
1 parent 11ea8b8 commit 8650454

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

compulab/ucm-imx95/bsp/ucm-imx95-boot.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ let
1414
src = pkgs.fetchFromGitHub {
1515
owner = "nxp-imx";
1616
repo = "imx-mkimage";
17-
#tag: lf-6.6.36
18-
rev = "4622115cbc037f79039c4522faeced4aabea986b";
19-
sha256 = "sha256-2gz0GxlB3jwy8PC6+cP3+MpyUzqE1vDTw8nuxK6vo3g=";
17+
#tag: lf-6.6.52-2.2.1
18+
rev = "f620fb8ef7a04c8dbed8119880f5eeffe3e69746";
19+
sha256 = "sha256-JZlX122uZntCIISI1H3Hw+tnk+N/gBJpFFDaZoY8W3c=";
2020
};
2121
shortRev = builtins.substring 0 8 src.rev;
2222
in

compulab/ucm-imx95/bsp/ucm-imx95-firmware.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
pkgs,
3-
silicon ? "A0",
3+
siliconRev ? "A0",
44
...
55
}:
66

@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
3434

3535
installPhase = ''
3636
mkdir -p $out
37-
export SILICON=${silicon}
37+
export SILICON=${siliconRev}
3838
3939
# M7 firmware
4040
echo "Copying M7 firmware..."

0 commit comments

Comments
 (0)