From: Rogerio Nunes <[email protected]> The test scripts explicitly use bash instead of sh, so it's necessary to have bash as a runtime dependency in the imx-test recipe, otherwise, bitbake will fail when populating a rootfs that does not include bash.
Signed-off-by: Rogerio Nunes <[email protected]> --- recipes-bsp/imx-test/imx-test.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-bsp/imx-test/imx-test.inc b/recipes-bsp/imx-test/imx-test.inc index a98313c..eb3d02e 100644 --- a/recipes-bsp/imx-test/imx-test.inc +++ b/recipes-bsp/imx-test/imx-test.inc @@ -52,4 +52,6 @@ do_install() { } FILES_${PN} += "/unit_tests" +RDEPENDS_${PN} = "bash" + FILES_${PN}-dbg += "/unit_tests/.debug" -- 1.8.3.2 _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
