mirror of
https://git.yoctoproject.org/meta-zephyr
synced 2026-09-13 12:49:32 +02: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>
20 lines
373 B
BlitzBasic
20 lines
373 B
BlitzBasic
include zephyr-kernel-src.inc
|
|
|
|
ZEPHYR_TEST_SRCDIR = "tests/legacy/kernel/"
|
|
|
|
IMAGE_NO_MANIFEST = "1"
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
do_install () {
|
|
kerneldir=${D}/usr/src/zephyr
|
|
install -d $kerneldir
|
|
cp -r ${S}/* $kerneldir
|
|
}
|
|
|
|
PACKAGES = "${PN}"
|
|
FILES:${PN} = "/usr/src/zephyr"
|
|
|
|
SYSROOT_DIRS += "/usr/src/zephyr"
|