mirror of
https://git.yoctoproject.org/meta-zephyr
synced 2026-01-29 21:58:41 +01:00
This commit restructures meta-zephyr into meta-zephyr-core and meta-zephyr-bsp. It moves machine definitions into meta-zephyr-bsp in preparation for adding the autogenerated zephyr machines. Signed-off-by: Eilís Ní Fhlannagáin <elizabeth.flanagan@huawei.com> Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
19 lines
543 B
BlitzBasic
19 lines
543 B
BlitzBasic
LICENSE = "Apache-2.0"
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
require zephyr-kernel-test.inc
|
|
|
|
addtask testimage
|
|
deltask compile
|
|
deltask install
|
|
|
|
do_testimage () {
|
|
:
|
|
}
|
|
|
|
do_testimage[depends] = '${@" ".join(["zephyr-kernel-test-" + x + ":do_testimage" for x in d.getVar("ZEPHYRTESTS", True).split()])}'
|
|
|
|
do_build[depends] = '${@" ".join(["zephyr-kernel-test-" + x + ":do_build" for x in d.getVar("ZEPHYRTESTS", True).split()])}'
|
|
|
|
do_clean[depends] = '${@" ".join(["zephyr-kernel-test-" + x + ":do_clean" for x in d.getVar("ZEPHYRTESTS", True).split()])}'
|