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 9155e0bb..bf08c320 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 @@ -17,8 +17,13 @@ UNPACKDIR = "${S}" do_install() { install -d ${D}${datadir}/matrix-gui-2.0/apps - install -m 0755 ${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 (#15377): https://lists.yoctoproject.org/g/meta-arago/message/15377 Mute This Topic: https://lists.yoctoproject.org/mt/106542644/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
