layers: add kirkstone support

Signed-off-by: Jon Mason <jon.mason@arm.com>
Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
This commit is contained in:
Jon Mason
2022-02-22 23:15:15 -05:00
committed by Naveen Saini
parent 86f09c2b4d
commit 005557e6d4
2 changed files with 4 additions and 4 deletions

View File

@@ -15,6 +15,6 @@ LAYERVERSION_zephyrbsp = "1"
LAYERDEPENDS_zephyrbsp = "zephyrcore core meta-python"
LAYERSERIES_COMPAT_zephyrbsp = "dunfell gatesgarth hardknott honister"
LAYERSERIES_COMPAT_zephyrbsp = "dunfell gatesgarth hardknott honister kirkstone"
X86_TUNE_DIR = "${@bb.utils.contains('LAYERSERIES_CORENAMES', 'honister', 'include/x86', 'include', d)}"
X86_TUNE_DIR = "${@bb.utils.contains_any('LAYERSERIES_CORENAMES', 'honister kirkstone', 'include/x86', 'include', d)}"

View File

@@ -15,8 +15,8 @@ LAYERVERSION_zephyrcore = "1"
LAYERDEPENDS_zephyrcore = "core meta-python"
LAYERSERIES_COMPAT_zephyrcore = "dunfell gatesgarth hardknott honister"
LAYERSERIES_COMPAT_zephyrcore = "dunfell gatesgarth hardknott honister kirkstone"
X86_TUNE_DIR = "${@bb.utils.contains('LAYERSERIES_CORENAMES', 'honister', 'include/x86', 'include', d)}"
X86_TUNE_DIR = "${@bb.utils.contains_any('LAYERSERIES_CORENAMES', 'honister kirkstone', 'include/x86', 'include', d)}"
PYTHON3_NATIVE_SITEPACKAGES_DIR = "${libdir_native}/${PYTHON3_DIR}/site-packages"