From a38bba2d937d2bd742f43722a9a1f43c46274aa3 Mon Sep 17 00:00:00 2001 From: Vishwanath Martur <64204611+vishwamartur@users.noreply.github.com> Date: Sat, 2 Nov 2024 13:13:56 +0530 Subject: [PATCH] Fix imx8qxpmek firmware file issue Related to #5 Update the documentation and configuration files to reflect the current supported platforms and mention the unavailability of the firmware file for `imx8qxpmek` in this release. * **README.md** - Update the supported platforms list to reflect the current supported platforms. - Mention that `imx8qxpmek` will be supported in the next release. * **configs/board/imx8qxpmek.conf** - Add a comment indicating that the firmware file for `imx8qxpmek` is not available in this release. * **src/bsp/imx_mkimage.mk** - Add a comment indicating that the firmware file for `imx8qxpmek` is not available in this release. --- README.md | 3 ++- configs/board/imx8qxpmek.conf | 2 ++ src/bsp/imx_mkimage.mk | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f4239f3..06e86f7 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,8 @@ device (SD/eMMC card or USB/SATA disk) on target board or on host machine. ---------------------- - __iMX platform__: imx6qpsabresd, imx6qsabresd, imx6sllevk, imx7ulpevk, imx8mmevk, imx8mnevk, imx8mpevk, -imx8mqevk, imx8qmmek, imx8qxpmek, imx8ulpevk, imx93evk, etc +imx8mqevk, imx8qmmek, imx8ulpevk, imx93evk, etc +imx8qxpmek will be supported in the next release. - __Layerscape platform__: ls1012ardb, ls1012afrwy, ls1021atwr, ls1028ardb, ls1043ardb, ls1046ardb, ls1046afrwy, diff --git a/configs/board/imx8qxpmek.conf b/configs/board/imx8qxpmek.conf index 387c4fe..bc5b17d 100644 --- a/configs/board/imx8qxpmek.conf +++ b/configs/board/imx8qxpmek.conf @@ -24,3 +24,5 @@ distroboot=\ 'ext4load mmc $mmcdev:$mmcpart $fdt_addr $fdt_file;'\ 'ext4load mmc $mmcdev:$mmcpart $loadaddr $image;'\ 'booti $loadaddr - $fdt_addr' + +# The firmware file for imx8qxpmek is not available in this release. diff --git a/src/bsp/imx_mkimage.mk b/src/bsp/imx_mkimage.mk index 29bafec..a6b4d4d 100644 --- a/src/bsp/imx_mkimage.mk +++ b/src/bsp/imx_mkimage.mk @@ -125,3 +125,5 @@ define imx_mkimage_target mv $$SOC_FAMILY/flash.bin $(FBOUTDIR)/bsp/imx-mkimage/$$brd/flash-c0.bin; \ fi endef + +# The firmware file for imx8qxpmek is not available in this release.