diff options
| author | Jun Zhu <junzhu@nxp.com> | 2022-12-16 15:28:16 +0800 |
|---|---|---|
| committer | Jun Zhu <junzhu@nxp.com> | 2022-12-16 15:51:01 +0800 |
| commit | fa2d57d67407f94614f24eea008c4a69ec73bc1c (patch) | |
| tree | 880b5b1710edc4d7b9d5655a0b25fc6247c72033 | |
| parent | ebe0e15e8fe5f606af78ffa89f7b859e1b6e1bb6 (diff) | |
| download | meta-freescale-fa2d57d67407f94614f24eea008c4a69ec73bc1c.tar.gz | |
management-complex: Add recipe for v10.35.0
Signed-off-by: Jun Zhu <junzhu@nxp.com>
| -rw-r--r-- | recipes-dpaa2/management-complex/management-complex_10.35.0.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/recipes-dpaa2/management-complex/management-complex_10.35.0.bb b/recipes-dpaa2/management-complex/management-complex_10.35.0.bb new file mode 100644 index 000000000..d114a92e4 --- /dev/null +++ b/recipes-dpaa2/management-complex/management-complex_10.35.0.bb | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | SUMMARY = "DPAA2 Management Complex Firmware" | ||
| 2 | LICENSE = "NXP-Binary-EULA" | ||
| 3 | LIC_FILES_CHKSUM = "file://NXP-Binary-EULA.txt;md5=1db1363924ceccb1edea921b6495bdc2" | ||
| 4 | |||
| 5 | inherit deploy | ||
| 6 | |||
| 7 | INHIBIT_DEFAULT_DEPS = "1" | ||
| 8 | |||
| 9 | SRC_URI = "git://github.com/nxp/qoriq-mc-binary;protocol=https;nobranch=1" | ||
| 10 | SRCREV = "836d7bf606b51c18b5e3726d68dcf3b3ac4de74a" | ||
| 11 | |||
| 12 | S = "${WORKDIR}/git" | ||
| 13 | |||
| 14 | REGLEX:ls2088a = "ls2088a" | ||
| 15 | REGLEX:ls2080a = "ls2080a" | ||
| 16 | REGLEX:ls1088a = "ls1088a" | ||
| 17 | REGLEX:lx2160a = "lx216xa" | ||
| 18 | REGLEX:lx2162a = "lx216xa" | ||
| 19 | |||
| 20 | do_install () { | ||
| 21 | install -d ${D}/boot | ||
| 22 | install -m 755 ${S}/${REGLEX}/*.itb ${D}/boot | ||
| 23 | } | ||
| 24 | |||
| 25 | do_deploy () { | ||
| 26 | install -d ${DEPLOYDIR}/mc_app | ||
| 27 | install -m 755 ${S}/${REGLEX}/*.itb ${DEPLOYDIR}/mc_app | ||
| 28 | # make a symlink to the latest binary | ||
| 29 | for mc_binary in `find ${DEPLOYDIR}/mc_app -type f -printf "%f\n" |sort`;do | ||
| 30 | ln -sfT ${mc_binary} ${DEPLOYDIR}/mc_app/mc.itb | ||
| 31 | done | ||
| 32 | } | ||
| 33 | addtask deploy before do_build after do_install | ||
| 34 | |||
| 35 | PACKAGES += "${PN}-image" | ||
| 36 | FILES:${PN}-image += "/boot" | ||
| 37 | |||
| 38 | INHIBIT_PACKAGE_STRIP = "1" | ||
| 39 | |||
| 40 | COMPATIBLE_MACHINE = "(qoriq-arm64)" | ||
| 41 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
