diff options
| -rw-r--r-- | recipes-bsp/firmware-imx/firmware-imx-8_7.8.bb | 25 | ||||
| -rw-r--r-- | recipes-bsp/firmware-imx/firmware-imx-8m_7.8.bb | 24 | ||||
| -rw-r--r-- | recipes-bsp/firmware-imx/firmware-imx-8x_7.8.bb | 20 |
3 files changed, 69 insertions, 0 deletions
diff --git a/recipes-bsp/firmware-imx/firmware-imx-8_7.8.bb b/recipes-bsp/firmware-imx/firmware-imx-8_7.8.bb new file mode 100644 index 000000000..d99aa41be --- /dev/null +++ b/recipes-bsp/firmware-imx/firmware-imx-8_7.8.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | # Copyright 2018 NXP | ||
| 2 | SUMMARY = "Freescale i.MX firmware for 8 family" | ||
| 3 | DESCRIPTION = "Freescale i.MX firmware for 8 family" | ||
| 4 | |||
| 5 | require firmware-imx-${PV}.inc | ||
| 6 | |||
| 7 | inherit deploy | ||
| 8 | |||
| 9 | do_install[noexec] = "1" | ||
| 10 | |||
| 11 | do_deploy() { | ||
| 12 | # Cadence HDMI | ||
| 13 | install -m 0644 ${S}/firmware/hdmi/cadence/hdmitxfw.bin ${DEPLOYDIR} | ||
| 14 | install -m 0644 ${S}/firmware/hdmi/cadence/hdmirxfw.bin ${DEPLOYDIR} | ||
| 15 | install -m 0644 ${S}/firmware/hdmi/cadence/dpfw.bin ${DEPLOYDIR} | ||
| 16 | # SECO | ||
| 17 | install -m 0644 ${S}/firmware/seco/mx8qm-ahab-container.img ${DEPLOYDIR} | ||
| 18 | } | ||
| 19 | addtask deploy after do_install before do_build | ||
| 20 | |||
| 21 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | ||
| 22 | |||
| 23 | COMPATIBLE_MACHINE = "(mx8)" | ||
| 24 | COMPATIBLE_MACHINE_mx8m = "(^$)" | ||
| 25 | COMPATIBLE_MACHINE_mx8x = "(^$)" | ||
diff --git a/recipes-bsp/firmware-imx/firmware-imx-8m_7.8.bb b/recipes-bsp/firmware-imx/firmware-imx-8m_7.8.bb new file mode 100644 index 000000000..a605d2262 --- /dev/null +++ b/recipes-bsp/firmware-imx/firmware-imx-8m_7.8.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | # Copyright 2018 NXP | ||
| 2 | SUMMARY = "Freescale i.MX firmware for 8M and 8M Mini family" | ||
| 3 | DESCRIPTION = "Freescale i.MX firmware for 8M and 8M Mini family" | ||
| 4 | |||
| 5 | require firmware-imx-${PV}.inc | ||
| 6 | |||
| 7 | inherit deploy | ||
| 8 | |||
| 9 | do_install[noexec] = "1" | ||
| 10 | |||
| 11 | do_deploy() { | ||
| 12 | # Synopsys DDR | ||
| 13 | for ddr_firmware in ${DDR_FIRMWARE_NAME}; do | ||
| 14 | install -m 0644 ${S}/firmware/ddr/synopsys/${ddr_firmware} ${DEPLOYDIR} | ||
| 15 | done | ||
| 16 | # Cadence DP and HDMI | ||
| 17 | install -m 0644 ${S}/firmware/hdmi/cadence/signed_dp_imx8m.bin ${DEPLOYDIR} | ||
| 18 | install -m 0644 ${S}/firmware/hdmi/cadence/signed_hdmi_imx8m.bin ${DEPLOYDIR} | ||
| 19 | } | ||
| 20 | addtask deploy after do_install before do_build | ||
| 21 | |||
| 22 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | ||
| 23 | |||
| 24 | COMPATIBLE_MACHINE = "(mx8m)" | ||
diff --git a/recipes-bsp/firmware-imx/firmware-imx-8x_7.8.bb b/recipes-bsp/firmware-imx/firmware-imx-8x_7.8.bb new file mode 100644 index 000000000..85d394a00 --- /dev/null +++ b/recipes-bsp/firmware-imx/firmware-imx-8x_7.8.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | # Copyright 2018 NXP | ||
| 2 | SUMMARY = "Freescale i.MX firmware for 8X family" | ||
| 3 | DESCRIPTION = "Freescale i.MX firmware for 8X family" | ||
| 4 | |||
| 5 | require firmware-imx-${PV}.inc | ||
| 6 | |||
| 7 | inherit deploy | ||
| 8 | |||
| 9 | do_install[noexec] = "1" | ||
| 10 | |||
| 11 | do_deploy() { | ||
| 12 | # SECO | ||
| 13 | install -m 0644 ${S}/firmware/seco/mx8qx-ahab-container.img ${DEPLOYDIR} | ||
| 14 | } | ||
| 15 | |||
| 16 | addtask deploy after do_install before do_build | ||
| 17 | |||
| 18 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | ||
| 19 | |||
| 20 | COMPATIBLE_MACHINE = "(mx8x)" | ||
