zephyr-kernel: Use relative path

Use relative path for all the include files to avoid overlaying the
include files.

Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
This commit is contained in:
Sandeep Gundlupet Raju
2025-08-18 16:03:01 -06:00
committed by Lee Chee Yang
parent 596512805b
commit 835f0fc0ba
4 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
require zephyr-kernel-src.inc require recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc
require zephyr-kernel-common.inc require recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc
inherit deploy image-artifact-names inherit deploy image-artifact-names
OECMAKE_SOURCEPATH = "${ZEPHYR_SRC_DIR}" OECMAKE_SOURCEPATH = "${ZEPHYR_SRC_DIR}"

View File

@@ -8,7 +8,7 @@ inherit ${ZEPHYR_INHERIT_CLASSES}
IMAGE_NO_MANIFEST = "1" IMAGE_NO_MANIFEST = "1"
ZEPHYR_TOOLCHAIN_VARIANT ?= "cross-compile" ZEPHYR_TOOLCHAIN_VARIANT ?= "cross-compile"
require zephyr-toolchain-${ZEPHYR_TOOLCHAIN_VARIANT}.inc require recipes-kernel/zephyr-kernel/zephyr-toolchain-${ZEPHYR_TOOLCHAIN_VARIANT}.inc
ZEPHYR_MAKE_OUTPUT = "zephyr.elf" ZEPHYR_MAKE_OUTPUT = "zephyr.elf"
ZEPHYR_MAKE_BIN_OUTPUT = "zephyr.bin" ZEPHYR_MAKE_BIN_OUTPUT = "zephyr.bin"

View File

@@ -1,7 +1,7 @@
LICENSE = "Apache-2.0" LICENSE = "Apache-2.0"
INHIBIT_DEFAULT_DEPS = "1" INHIBIT_DEFAULT_DEPS = "1"
require zephyr-kernel-test.inc require recipes-kernel/zephyr-kernel/zephyr-kernel-test.inc
addtask testimage addtask testimage
deltask compile deltask compile

View File

@@ -1,4 +1,4 @@
require zephyr-image.inc require recipes-kernel/zephyr-kernel/zephyr-image.inc
require zephyr-kernel-test.inc require recipes-kernel/zephyr-kernel/zephyr-kernel-test.inc
BBCLASSEXTEND = '${@" ".join(["zephyrtest:" + x for x in d.getVar("ZEPHYRTESTS", True).split()])}' BBCLASSEXTEND = '${@" ".join(["zephyrtest:" + x for x in d.getVar("ZEPHYRTESTS", True).split()])}'