The script was installed in the wrong directory, but the /usr/share/matrix-gui-2.0/apps needs to also exist.
Signed-off-by: Ryan Eatmon <[email protected]> --- v2: Fix commit message and fix install permissions on script. .../arm-ddr-bandwidth/arm-ddr-bandwidth.bb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/meta-arago-test/recipes-benchmark/arm-ddr-bandwidth/arm-ddr-bandwidth.bb b/meta-arago-test/recipes-benchmark/arm-ddr-bandwidth/arm-ddr-bandwidth.bb index 78f80b55..d88b3e6f 100644 --- a/meta-arago-test/recipes-benchmark/arm-ddr-bandwidth/arm-ddr-bandwidth.bb +++ b/meta-arago-test/recipes-benchmark/arm-ddr-bandwidth/arm-ddr-bandwidth.bb @@ -16,8 +16,13 @@ S = "${WORKDIR}" do_install() { install -d ${D}${datadir}/matrix-gui-2.0/apps - install -m 0644 ${S}/runLmDDRBandwidth.sh ${D}${datadir}/matrix-gui-2.0/apps/runLmDDRBandwidth.sh + + install -d ${D}${bindir} + install -m 0755 ${S}/runLmDDRBandwidth.sh ${D}${bindir}/runLmDDRBandwidth.sh } -FILES:${PN} = "${datadir}/matrix-gui-2.0/apps/runLmDDRBandwidth.sh" +FILES:${PN} = " \ + ${datadir}/matrix-gui-2.0/apps \ + ${bindir}/runLmDDRBandwidth.sh \ +" -- 2.17.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#15378): https://lists.yoctoproject.org/g/meta-arago/message/15378 Mute This Topic: https://lists.yoctoproject.org/mt/106542649/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
