| Message ID | 20250818220304.2300436-12-sandeep.gundlupet-raju@amd.com |
|---|---|
| State | New |
| Headers | show |
| Series | Update for scarthgap release | expand |
I think this cause build error with zephyr kernel 3.6.0. This works with zephyr kernel 3.7.0 | CMake Error at /data/scarthgap/poky/build-zephyr/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr/cmake/modules/boards.cmake:167 (message): | Invalid BOARD; see above. > -----Original Message----- > From: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> > Sent: Tuesday, 19 August, 2025 6:03 AM > To: yocto-patches@lists.yoctoproject.org; Lee, Chee Yang > <chee.yang.lee@intel.com> > Subject: [meta-zephyr][scarthgap][PATCH v6 11/11] zephyr-kernel-common: > Add Board extension support > > Add board extension support variables where user can specify the > BOARD_ROOT variable for out-of-tree custom boards. > > Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet- > raju@amd.com> > --- > .../recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- > common.inc b/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- > common.inc > index 5191b9a..579fd6c 100644 > --- a/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- > common.inc > +++ b/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- > common > +++ .inc > @@ -18,6 +18,11 @@ EXTRA_OECMAKE = "\ > -DZEPHYR_BASE=${ZEPHYR_BASE} \ > -DBOARD=${BOARD} \ > -DARCH=${ARCH} \ > + -DBOARD_DIR=${BOARD_DIR} \ > + -DARCH_DIR=${ARCH_DIR} \ > + -DBOARD_ROOT=${BOARD_ROOT} \ > + -DBOARD_EXTENSION_DIRS=${BOARD_EXTENSION_DIRS} \ > + -DSOC_ROOT=${SOC_ROOT} \ > -DZEPHYR_TOOLCHAIN_VARIANT=${ZEPHYR_TOOLCHAIN_VARIANT} \ > -DZEPHYR_MODULES=${ZEPHYR_MODULES} \ > " > -- > 2.34.1
On 8/20/2025 2:03 AM, Lee Chee Yang via lists.yoctoproject.org wrote: > I think this cause build error with zephyr kernel 3.6.0. This works with zephyr kernel 3.7.0 > > | CMake Error at /data/scarthgap/poky/build-zephyr/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr/cmake/modules/boards.cmake:167 (message): > | Invalid BOARD; see above. [Sandeep]: I see this is supported in 3.6 Branch https://github.com/zephyrproject-rtos/zephyr/blob/v3.6-branch/cmake/modules/boards.cmake#L24-L30 but not sure why it is failing can you provide the reproducibility steps? > >> -----Original Message----- >> From: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> >> Sent: Tuesday, 19 August, 2025 6:03 AM >> To: yocto-patches@lists.yoctoproject.org; Lee, Chee Yang >> <chee.yang.lee@intel.com> >> Subject: [meta-zephyr][scarthgap][PATCH v6 11/11] zephyr-kernel-common: >> Add Board extension support >> >> Add board extension support variables where user can specify the >> BOARD_ROOT variable for out-of-tree custom boards. >> >> Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet- >> raju@amd.com> >> --- >> .../recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc | 5 +++++ >> 1 file changed, 5 insertions(+) >> >> diff --git a/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- >> common.inc b/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- >> common.inc >> index 5191b9a..579fd6c 100644 >> --- a/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- >> common.inc >> +++ b/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- >> common >> +++ .inc >> @@ -18,6 +18,11 @@ EXTRA_OECMAKE = "\ >> -DZEPHYR_BASE=${ZEPHYR_BASE} \ >> -DBOARD=${BOARD} \ >> -DARCH=${ARCH} \ >> + -DBOARD_DIR=${BOARD_DIR} \ >> + -DARCH_DIR=${ARCH_DIR} \ >> + -DBOARD_ROOT=${BOARD_ROOT} \ >> + -DBOARD_EXTENSION_DIRS=${BOARD_EXTENSION_DIRS} \ >> + -DSOC_ROOT=${SOC_ROOT} \ >> -DZEPHYR_TOOLCHAIN_VARIANT=${ZEPHYR_TOOLCHAIN_VARIANT} \ >> -DZEPHYR_MODULES=${ZEPHYR_MODULES} \ >> " >> -- >> 2.34.1 > > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#2064): https://lists.yoctoproject.org/g/yocto-patches/message/2064 > Mute This Topic: https://lists.yoctoproject.org/mt/114772375/8188369 > Group Owner: yocto-patches+owner@lists.yoctoproject.org > Unsubscribe: https://lists.yoctoproject.org/g/yocto-patches/leave/14211927/8188369/518048116/xyzzy [santraju@amd.com] > -=-=-=-=-=-=-=-=-=-=-=- > >
On 8/20/2025 8:32 AM, Sandeep Gundlupet Raju via lists.yoctoproject.org wrote: > > On 8/20/2025 2:03 AM, Lee Chee Yang via lists.yoctoproject.org wrote: >> I think this cause build error with zephyr kernel 3.6.0. This works >> with zephyr kernel 3.7.0 >> >> | CMake Error at >> /data/scarthgap/poky/build-zephyr/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr/cmake/modules/boards.cmake:167 >> (message): >> | Invalid BOARD; see above. > [Sandeep]: I see this is supported in 3.6 Branch > https://github.com/zephyrproject-rtos/zephyr/blob/v3.6-branch/cmake/modules/boards.cmake#L24-L30 > but not sure why it is failing can you provide the reproducibility steps? [Sandeep]: Base on the attached logs it seems it fails to detect the machine even though it exists looks like its a bug in zephyr 3.6 >> >>> -----Original Message----- >>> From: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> >>> Sent: Tuesday, 19 August, 2025 6:03 AM >>> To: yocto-patches@lists.yoctoproject.org; Lee, Chee Yang >>> <chee.yang.lee@intel.com> >>> Subject: [meta-zephyr][scarthgap][PATCH v6 11/11] zephyr-kernel-common: >>> Add Board extension support >>> >>> Add board extension support variables where user can specify the >>> BOARD_ROOT variable for out-of-tree custom boards. >>> >>> Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet- >>> raju@amd.com> >>> --- >>> .../recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc | 5 +++++ >>> 1 file changed, 5 insertions(+) >>> >>> diff --git >>> a/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- >>> common.inc >>> b/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- >>> common.inc >>> index 5191b9a..579fd6c 100644 >>> --- a/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- >>> common.inc >>> +++ b/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel- >>> common >>> +++ .inc >>> @@ -18,6 +18,11 @@ EXTRA_OECMAKE = "\ >>> -DZEPHYR_BASE=${ZEPHYR_BASE} \ >>> -DBOARD=${BOARD} \ >>> -DARCH=${ARCH} \ >>> + -DBOARD_DIR=${BOARD_DIR} \ >>> + -DARCH_DIR=${ARCH_DIR} \ >>> + -DBOARD_ROOT=${BOARD_ROOT} \ >>> + -DBOARD_EXTENSION_DIRS=${BOARD_EXTENSION_DIRS} \ >>> + -DSOC_ROOT=${SOC_ROOT} \ >>> -DZEPHYR_TOOLCHAIN_VARIANT=${ZEPHYR_TOOLCHAIN_VARIANT} \ >>> -DZEPHYR_MODULES=${ZEPHYR_MODULES} \ >>> " >>> -- >>> 2.34.1 >> >> >> >> >> > > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#2072): > https://lists.yoctoproject.org/g/yocto-patches/message/2072 > Mute This Topic: https://lists.yoctoproject.org/mt/114772375/8188369 > Group Owner: yocto-patches+owner@lists.yoctoproject.org > Unsubscribe: > https://lists.yoctoproject.org/g/yocto-patches/leave/14211927/8188369/518048116/xyzzy > [santraju@amd.com] > -=-=-=-=-=-=-=-=-=-=-=- > > DEBUG: Executing python function extend_recipe_sysroot NOTE: Direct dependencies are ['/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-devtools/cmake/cmake-native_3.28.3.bb:do_populate_sysroot', '/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb:do_populate_sysroot', '/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-devtools/qemu/qemu-native_8.2.7.bb:do_populate_sysroot', '/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-devtools/quilt/quilt-native_0.67.bb:do_populate_sysroot', 'virtual:native:/scratch/sandeep/yocto/yp-scarthgap/sources/meta-openembedded/meta-python/recipes-devtools/python/python3-pykwalify_1.8.0.bb:do_populate_sysroot', 'virtual:native:/scratch/sandeep/yocto/yp-scarthgap/sources/meta-zephyr/meta-zephyr-core/recipes-devtools/zephyr-sdk/zephyr-sdk_0.16.9.bb:do_populate_sysroot', 'virtual:native:/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-devtools/ninja/ninja_1.11.1.bb:do_populate_sysroot', 'virtual:native:/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-devtools/patch/patch_2.7.6.bb:do_populate_sysroot', 'virtual:native:/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-devtools/pseudo/pseudo_git.bb:do_populate_sysroot', 'virtual:native:/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-devtools/python/python3-pyelftools_0.30.bb:do_populate_sysroot', 'virtual:native:/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-devtools/python/python3-pyyaml_6.0.1.bb:do_populate_sysroot', 'virtual:native:/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-devtools/python/python3_3.12.11.bb:do_populate_sysroot', 'virtual:native:/scratch/sandeep/yocto/yp-scarthgap/sources/poky/meta/recipes-extended/gperf/gperf_3.1.bb:do_populate_sysroot'] NOTE: Installed into sysroot: [] NOTE: Skipping as already exists in sysroot: ['gettext-minimal-native', 'cmake-native', 'libtool-native', 'm4-native', 'qemu-helper-native', 'qemu-native', 'qemu-system-native', 'quilt-native', 'texinfo-dummy-native', 'python3-dateutil-native', 'python3-docopt-native', 'python3-pykwalify-native', 'zephyr-sdk-native', 'openssl-native', 'libslirp-native', 'expat-native', 'gettext-native', 'glib-2.0-native', 'ncurses-native', 'util-linux-libuuid-native', 'util-linux-native', 'zlib-native', 'flex-native', 'gnu-config-native', 'libedit-native', 'make-native', 'ninja-native', 'patch-native', 'perl-native', 'pseudo-native', 'python3-build-native', 'python3-cython-native', 'python3-flit-core-native', 'python3-installer-native', 'python3-packaging-native', 'python3-pip-native', 'python3-pyelftools-native', 'python3-pyparsing-native', 'python3-pyproject-hooks-native', 'python3-pyyaml-native', 'python3-ruamel-yaml-native', 'python3-setuptools-scm-native', 'python3-setuptools-native', 'python3-six-native', 'python3-tomli-native', 'python3-typing-extensions-native', 'python3-wheel-native', 'python3-native', 'unfs3-native', 'bzip2-native', 'gperf-native', 'libnsl2-native', 'libtirpc-native', 'unzip-native', 'xz-native', 'zstd-native', 'libsdl2-native', 'libpthread-stubs-native', 'libx11-native', 'libxau-native', 'libxcb-native', 'libxdmcp-native', 'libxext-native', 'libxrandr-native', 'libxrender-native', 'pixman-native', 'xtrans-native', 'xcb-proto-native', 'xorgproto-native', 'util-macros-native', 'dtc-native', 'alsa-lib-native', 'libpng-native', 'attr-native', 'gdbm-native', 'libcap-ng-native', 'libffi-native', 'libpcre2-native', 'libyaml-native', 're2c-native', 'sqlite3-native'] DEBUG: Python function extend_recipe_sysroot finished DEBUG: Executing shell function do_configure Loading Zephyr default modules (Zephyr base (cached)). -- Application: /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr/samples/philosophers -- CMake version: 3.28.3 -- Found Python3: /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/recipe-sysroot-native/usr/bin/python3-native/python3 (found suitable version "3.12.11", minimum required is "3.8") found components: Interpreter -- Cache files will be written to: /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/build/.cache -- Zephyr version: 3.6.0 (/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr) -- Board: qemu_cortex_a9 No board named 'qemu_cortex_a9' found. Please choose one of the following boards: arc: em_starterkit em_starterkit_em11d em_starterkit_em7d em_starterkit_em7d_v22 emsdp emsdp_em4 emsdp_em5d emsdp_em6 emsdp_em7d emsdp_em7d_esp emsdp_em9d hsdk hsdk4xd hsdk_2cores iotdk nsim_em nsim_em11d nsim_em7d_v22 nsim_hs nsim_hs3x_hostlink nsim_hs5x nsim_hs5x_smp nsim_hs5x_smp_12cores nsim_hs6x nsim_hs6x_smp nsim_hs6x_smp_12cores nsim_hs_flash_xip nsim_hs_mpuv6 nsim_hs_smp nsim_hs_sram nsim_sem nsim_sem_mpu_stack_guard nsim_vpx5 qemu_arc_em qemu_arc_hs qemu_arc_hs5x qemu_arc_hs6x qemu_arc_hs_xip arm: 96b_aerocore2 96b_argonkey 96b_avenger96 96b_carbon 96b_carbon_nrf51 96b_meerkat96 96b_neonkey 96b_nitrogen 96b_stm32_sensor_mez 96b_wistrio acn52832 actinius_icarus actinius_icarus_bee actinius_icarus_bee_ns actinius_icarus_ns actinius_icarus_som actinius_icarus_som_dk actinius_icarus_som_dk_ns actinius_icarus_som_ns adafruit_feather_m0_basic_proto adafruit_feather_m0_lora adafruit_feather_nrf52840 adafruit_feather_stm32f405 adafruit_grand_central_m4_express adafruit_itsybitsy_m4_express adafruit_itsybitsy_nrf52840 adafruit_kb2040 adafruit_qt_py_rp2040 adafruit_trinket_m0 adi_eval_adin1110ebz adi_eval_adin2111ebz adi_sdp_k1 am62x_m4_phyboard_lyra am62x_m4_sk apollo4p_blue_kxr_evb apollo4p_evb arduino_due arduino_giga_r1_m4 arduino_giga_r1_m7 arduino_mkrzero arduino_nano_33_ble arduino_nano_33_ble_sense arduino_nano_33_iot arduino_nicla_sense_me arduino_opta_m4 arduino_portenta_h7_m4 arduino_portenta_h7_m7 arduino_uno_r4_minima arduino_zero arty_a7_arm_designstart_m1 arty_a7_arm_designstart_m3 ast1030_evb atsamc21n_xpro atsamd20_xpro atsamd21_xpro atsame54_xpro atsaml21_xpro atsamr21_xpro atsamr34_xpro az3166_iotdevkit b_g474e_dpow1 b_l072z_lrwan1 b_l4s5i_iot01a b_u585i_iot02a b_u585i_iot02a_ns bbc_microbit bbc_microbit_v2 bcm958401m2 bcm958402m2_m7 beagleconnect_freedom bl5340_dvk_cpuapp bl5340_dvk_cpuapp_ns bl5340_dvk_cpunet bl652_dvk bl653_dvk bl654_dvk bl654_sensor_board bl654_usb black_f407ve black_f407zg_pro blackpill_f401cc blackpill_f401ce blackpill_f411ce blueclover_plt_demo_v2_nrf52832 bt510 bt610 cc1352p1_launchxl cc1352r1_launchxl cc1352r_sensortag cc26x2r1_launchxl cc3220sf_launchxl cc3235sf_launchxl circuitdojo_feather_nrf9160 circuitdojo_feather_nrf9160_ns colibri_imx7d_m4 contextualelectronics_abc cy8ckit_062_ble_m0 cy8ckit_062_ble_m4 cy8ckit_062_wifi_bt_m0 cy8ckit_062_wifi_bt_m4 cy8ckit_062s4_m4 cy8cproto_062_4343w cy8cproto_063_ble cyclonev_socdk da14695_dk_usb da1469x_dk_pro decawave_dwm1001_dev degu_evk disco_l475_iot1 dragino_lsn50 dragino_nbsn95 ebyte_e73_tbb_nrf52832 efm32gg_sltb009a efm32gg_slwstk6121a efm32gg_stk3701a efm32hg_slstk3400a efm32pg_stk3401a efm32pg_stk3402a efm32pg_stk3402a_jg efm32wg_stk3800 efr32_radio_brd4104a efr32_radio_brd4161a efr32_radio_brd4170a efr32_radio_brd4180a efr32_radio_brd4187c efr32_radio_brd4250b efr32_radio_brd4255a efr32bg22_brd4184a efr32bg22_brd4184b efr32bg27_brd2602a efr32mg_sltb004a efr32xg24_dk2601b ev11l78a faze fk7b0m1_vbt6 frdm_k22f frdm_k64f frdm_k82f frdm_kl25z frdm_kw41z fvp_baser_aemv8r_aarch32 fvp_baser_aemv8r_aarch32_smp gd32a503v_eval gd32e103v_eval gd32e507v_start gd32e507z_eval gd32f350r_eval gd32f403z_eval gd32f407v_start gd32f450i_eval gd32f450v_start gd32f450z_eval gd32f470i_eval gd32l233r_eval google_dragonclaw google_kukui google_twinkie_v2 hexiwear_k64 hexiwear_kw40z holyiot_yj16019 ip_k66f kv260_r5 legend lora_e5_dev_board lora_e5_mini lpcxpresso11u68 lpcxpresso51u68 lpcxpresso54114_m0 lpcxpresso54114_m4 lpcxpresso55s06 lpcxpresso55s16 lpcxpresso55s28 lpcxpresso55s36 lpcxpresso55s69_cpu0 lpcxpresso55s69_cpu1 lpcxpresso55s69_ns mec1501modular_assy6885 mec15xxevb_assy6853 mec172xevb_assy6906 mec172xmodular_assy6930 mercury_xu mg100 mikroe_clicker_2 mikroe_mini_m4_for_stm32 mimx8mm_evk mimx8mm_phyboard_polis mimx8mp_evk_ddr mimx8mp_evk_itcm mimx8mp_phyboard_pollux mimx8mq_evk_cm4 mimxrt1010_evk mimxrt1015_evk mimxrt1020_evk mimxrt1024_evk mimxrt1040_evk mimxrt1050_evk mimxrt1050_evk_qspi mimxrt1060_evk mimxrt1060_evk_hyperflash mimxrt1060_evkb mimxrt1062_fmurt6 mimxrt1064_evk mimxrt1160_evk_cm4 mimxrt1160_evk_cm7 mimxrt1170_evk_cm4 mimxrt1170_evk_cm7 mimxrt1170_evkb_cm4 mimxrt1170_evkb_cm7 mimxrt595_evk_cm33 mimxrt685_evk_cm33 mm_feather mm_swiftio mps2_an385 mps2_an521 mps2_an521_ns mps2_an521_remote mps3_an547 mps3_an547_ns mr_canhubk3 msp_exp432p401r_launchxl npcx4m8f_evb npcx7m6fb_evb npcx9m6f_evb nrf21540dk_nrf52840 nrf51_ble400 nrf51_blenano nrf51_vbluno51 nrf51dk_nrf51422 nrf51dongle_nrf51422 nrf52832_mdk nrf52833dk_nrf52820 nrf52833dk_nrf52833 nrf52840_blip nrf52840_mdk nrf52840_mdk_usb_dongle nrf52840_papyr nrf52840dk_nrf52811 nrf52840dk_nrf52840 nrf52840dongle_nrf52840 nrf52_adafruit_feather nrf52_blenano2 nrf52_sparkfun nrf52_vbluno52 nrf52dk_nrf52805 nrf52dk_nrf52810 nrf52dk_nrf52832 nrf5340_audio_dk_nrf5340_cpuapp nrf5340_audio_dk_nrf5340_cpuapp_ns nrf5340_audio_dk_nrf5340_cpunet nrf5340dk_nrf5340_cpuapp nrf5340dk_nrf5340_cpuapp_ns nrf5340dk_nrf5340_cpunet nrf54h20pdk_nrf54h20_cpuapp nrf54h20pdk_nrf54h20_cpurad nrf54l15pdk_nrf54l15_cpuapp nrf9131ek_nrf9131 nrf9131ek_nrf9131_ns nrf9151dk_nrf9151 nrf9151dk_nrf9151_ns nrf9160_innblue21 nrf9160_innblue21_ns nrf9160_innblue22 nrf9160_innblue22_ns nrf9160dk_nrf52840 nrf9160dk_nrf9160 nrf9160dk_nrf9160_ns nrf9161dk_nrf9161 nrf9161dk_nrf9161_ns nucleo_c031c6 nucleo_f030r8 nucleo_f031k6 nucleo_f042k6 nucleo_f070rb nucleo_f091rc nucleo_f103rb nucleo_f207zg nucleo_f302r8 nucleo_f303k8 nucleo_f303re nucleo_f334r8 nucleo_f401re nucleo_f410rb nucleo_f411re nucleo_f412zg nucleo_f413zh nucleo_f429zi nucleo_f446re nucleo_f446ze nucleo_f722ze nucleo_f746zg nucleo_f756zg nucleo_f767zi nucleo_g031k8 nucleo_g070rb nucleo_g071rb nucleo_g0b1re nucleo_g431rb nucleo_g474re nucleo_h563zi nucleo_h723zg nucleo_h743zi nucleo_h745zi_q_m4 nucleo_h745zi_q_m7 nucleo_h753zi nucleo_h7a3zi_q nucleo_l011k4 nucleo_l031k6 nucleo_l053r8 nucleo_l073rz nucleo_l152re nucleo_l412rb_p nucleo_l432kc nucleo_l433rc_p nucleo_l452re nucleo_l452re_p nucleo_l476rg nucleo_l496zg nucleo_l4a6zg nucleo_l4r5zi nucleo_l552ze_q nucleo_l552ze_q_ns nucleo_u575zi_q nucleo_u5a5zj_q nucleo_wb55rg nucleo_wba52cg nucleo_wba55cg nucleo_wl55jc numaker_pfm_m467 nuvoton_pfm_m487 olimex_lora_stm32wl_devkit olimex_stm32_e407 olimex_stm32_h103 olimex_stm32_h405 olimex_stm32_h407 olimex_stm32_p405 olimexino_stm32 pan1770_evb pan1780_evb pan1781_evb pan1782_evb pan1783_evb_cpuapp pan1783_evb_cpunet pan1783a_evb_cpuapp pan1783a_evb_cpunet pan1783a_pa_evb_cpuapp pan1783a_pa_evb_cpunet pandora_stm32l475 particle_argon particle_boron particle_xenon pico_pi_m4 pinetime_devkit0 pinnacle_100_dvk qemu_cortex_a9 qemu_cortex_m0 qemu_cortex_m3 qemu_cortex_r5 qomu quick_feather rak4631_nrf52840 rak5010_nrf52840 raytac_mdbt50q_db_33_nrf52833 raytac_mdbt50q_db_40_nrf52840 raytac_mdbt53_db_40_nrf5340_cpuapp raytac_mdbt53_db_40_nrf5340_cpuapp_ns raytac_mdbt53_db_40_nrf5340_cpunet raytac_mdbt53v_db_40_nrf5340_cpuapp raytac_mdbt53v_db_40_nrf5340_cpuapp_ns raytac_mdbt53v_db_40_nrf5340_cpunet rcar_h3_salvatorx_cr7 rcar_h3ulcb_cr7 rcar_spider_cr52 rddrone_fmuk66 reel_board reel_board_v2 rm1xx_dvk ronoth_lodev rpi_pico rpi_pico_w ruuvi_ruuvitag rzt2m_starter_kit s32z270dc2_rtu0_r52 s32z270dc2_rtu1_r52 sam4e_xpro sam4l_ek sam4s_xplained sam_e70_xplained sam_e70b_xplained sam_v71_xult sam_v71b_xult scobc_module1 seeeduino_xiao segger_trb_stm32f407 sensortile_box sensortile_box_pro serpente sparkfun_pro_micro_rp2040 sparkfun_thing_plus_nrf9160 sparkfun_thing_plus_nrf9160_ns steval_fcu001v1 stm3210c_eval stm32373c_eval stm32_min_dev_black stm32_min_dev_blue stm32f030_demo stm32f072_eval stm32f072b_disco stm32f0_disco stm32f103_mini stm32f3_disco stm32f3_seco_d23 stm32f401_mini stm32f411e_disco stm32f412g_disco stm32f429i_disc1 stm32f469i_disco stm32f4_disco stm32f723e_disco stm32f746g_disco stm32f7508_dk stm32f769i_disco stm32g0316_disco stm32g071b_disco stm32g081b_eval stm32h573i_dk stm32h735g_disco stm32h747i_disco_m4 stm32h747i_disco_m7 stm32h750b_dk stm32h7b3i_dk stm32l1_disco stm32l476g_disco stm32l496g_disco stm32l4r9i_disco stm32l562e_dk stm32l562e_dk_ns stm32mp157c_dk2 stm32u5a9j_dk stm32vl_disco stm32wb5mm_dk stm32wb5mmg swan_r5 tdk_robokit1 teensy40 teensy41 thingy52_nrf52832 thingy53_nrf5340_cpuapp thingy53_nrf5340_cpuapp_ns thingy53_nrf5340_cpunet twr_ke18f twr_kv58f220m ubx_bmd300eval_nrf52832 ubx_bmd330eval_nrf52810 ubx_bmd340eval_nrf52840 ubx_bmd345eval_nrf52840 ubx_bmd360eval_nrf52811 ubx_bmd380eval_nrf52840 ubx_evkannab1_nrf52832 ubx_evkninab1_nrf52832 ubx_evkninab3_nrf52840 ubx_evkninab4_nrf52833 ucans32k1sic udoo_neo_full_m4 usb_kw24d512 v2m_beetle v2m_musca_b1 v2m_musca_b1_ns v2m_musca_s1 v2m_musca_s1_ns verdin_imx8mp_m7_ddr verdin_imx8mp_m7_itcm vmu_rt1170 w5500_evb_pico warp7_m4 waveshare_open103z we_ophelia1ev_nrf52805 we_proteus2ev_nrf52832 we_proteus3ev_nrf52840 weact_stm32g431_core wio_terminal xiao_ble xiao_ble_sense xmc45_relax_kit xmc47_relax_kit zybo arm64: bcm958402m2_a72 fvp_base_revc_2xaemv8a fvp_base_revc_2xaemv8a_smp_ns fvp_baser_aemv8r fvp_baser_aemv8r_smp intel_socfpga_agilex5_socdk intel_socfpga_agilex_socdk khadas_edgev mimx8mm_evk_a53 mimx8mm_evk_a53_smp mimx8mn_evk_a53 mimx8mn_evk_a53_smp mimx8mp_evk_a53 mimx8mp_evk_a53_smp mimx93_evk_a55 mimx93_evk_a55_sof nxp_ls1046ardb nxp_ls1046ardb_smp_2cores nxp_ls1046ardb_smp_4cores phycore_am62x_a53 qemu_cortex_a53 qemu_cortex_a53_smp qemu_cortex_a53_xip qemu_kvm_arm64 rcar_h3ulcb_ca57 rcar_salvator_xs_m3 roc_rk3568_pc roc_rk3568_pc_smp rpi_4b xenvm xenvm_gicv3 mips: qemu_malta qemu_malta_be nios2: altera_max10 qemu_nios2 posix: native_posix native_posix_64 native_sim native_sim_64 nrf52_bsim nrf5340bsim_nrf5340_cpuapp nrf5340bsim_nrf5340_cpunet riscv: adp_xc7k_ae350 beaglev_fire esp32c3_devkitm esp32c3_luatos_core esp32c3_luatos_core_usb gd32vf103c_starter gd32vf103v_eval hifive1 hifive1_revb hifive_unleashed hifive_unmatched icev_wireless it82xx2_evb it8xxx2_evb litex_vexriscv longan_nano longan_nano_lite m2gl025_miv mpfs_icicle neorv32 niosv_g niosv_m nrf54h20pdk_nrf54h20_cpuppr opentitan_earlgrey qemu_riscv32 qemu_riscv32_smp qemu_riscv32_xip qemu_riscv32e qemu_riscv64 qemu_riscv64_smp riscv32_virtual rv32m1_vega_ri5cy rv32m1_vega_zero_riscy sparkfun_red_v_things_plus stamp_c3 titanium_ti60_f225 tlsr9518adk80d xiao_esp32c3 sparc: generic_leon3 gr716a_mini qemu_leon3 x86: acrn acrn_ehl_crb intel_adl_crb intel_adl_rvp intel_ehl_crb intel_ehl_crb_sbl intel_ish_5_4_1 intel_ish_5_6_0 intel_ish_5_8_0 intel_rpl_p_crb intel_rpl_s_crb qemu_x86 qemu_x86_64 qemu_x86_64_nokpti qemu_x86_lakemont qemu_x86_nokpti qemu_x86_nommu qemu_x86_nopae qemu_x86_tiny qemu_x86_virt qemu_x86_xip up_squared up_squared_pro_7000 xtensa: esp32_devkitc_wroom esp32_devkitc_wroom_appcpu esp32_devkitc_wrover esp32_devkitc_wrover_appcpu esp32_ethernet_kit esp32s2_franzininho esp32s2_lolin_mini esp32s2_saola esp32s3_devkitm esp32s3_devkitm_appcpu esp32s3_luatos_core esp32s3_luatos_core_usb esp_wrover_kit heltec_wifi_lora32_v2 heltec_wireless_stick_lite_v3 intel_adsp_ace15_mtpm intel_adsp_ace20_lnl intel_adsp_cavs25 intel_adsp_cavs25_tgph kincony_kc868_a32 m5stack_atoms3 m5stack_atoms3_lite m5stack_core2 m5stack_stamps3 m5stickc_plus nxp_adsp_imx8 nxp_adsp_imx8m nxp_adsp_imx8ulp nxp_adsp_imx8x nxp_adsp_rt595 odroid_go olimex_esp32_evb qemu_xtensa qemu_xtensa_mmu xiao_esp32s3 xt-sim yd_esp32 CMake Error at /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr/cmake/modules/boards.cmake:167 (message): Invalid BOARD; see above. Call Stack (most recent call first): /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr/cmake/modules/zephyr_default.cmake:129 (include) /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include) /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:97 (include_boilerplate) CMakeLists.txt:4 (find_package) -- Configuring incomplete, errors occurred! WARNING: /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/temp/run.do_configure.668681:169 exit 1 from 'cmake -G 'Ninja' -DCMAKE_MAKE_PROGRAM=ninja $oecmake_sitefile /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr/samples/philosophers -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_INSTALL_BINDIR:PATH=bin -DCMAKE_INSTALL_SBINDIR:PATH=sbin -DCMAKE_INSTALL_LIBEXECDIR:PATH=libexec -DCMAKE_INSTALL_SYSCONFDIR:PATH=/etc -DCMAKE_INSTALL_SHAREDSTATEDIR:PATH=../com -DCMAKE_INSTALL_LOCALSTATEDIR:PATH=/var -DCMAKE_INSTALL_LIBDIR:PATH=lib -DCMAKE_INSTALL_INCLUDEDIR:PATH=include -DCMAKE_INSTALL_DATAROOTDIR:PATH=share -DPYTHON_EXECUTABLE:PATH=/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/recipe-sysroot-native/usr/bin/python3-native/python3 -DPython_EXECUTABLE:PATH=/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/recipe-sysroot-native/usr/bin/python3-native/python3 -DPython3_EXECUTABLE:PATH=/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/recipe-sysroot-native/usr/bin/python3-native/python3 -DLIB_SUFFIX= -DCMAKE_INSTALL_SO_NO_EXE=0 -DCMAKE_TOOLCHAIN_FILE:FILEPATH=/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/toolchain.cmake -DCMAKE_NO_SYSTEM_FROM_IMPORTED=1 -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DFETCHCONTENT_FULLY_DISCONNECTED=ON -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON -DZEPHYR_BASE=/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/zephyr -DBOARD=qemu_cortex_a9 -DARCH=arm -DBOARD_DIR=${BOARD_DIR} -DARCH_DIR=${ARCH_DIR} -DBOARD_ROOT=${BOARD_ROOT} -DBOARD_EXTENSION_DIRS=${BOARD_EXTENSION_DIRS} -DSOC_ROOT=${SOC_ROOT} -DZEPHYR_TOOLCHAIN_VARIANT=zephyr -DZEPHYR_MODULES=/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/acpica\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_libPhyComv1\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_phy_v1\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_channel_NtNcable\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_channel_multiatt\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_modem_magic\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_modem_BLE_simple\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_device_burst_interferer\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_device_WLAN_actmod\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_device_playback\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_libCryptov1\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/cmsis\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/cmsis-dsp\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/cmsis-nn\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/edtt\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/fs/fatfs\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/altera\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/ambiq\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/atmel\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/espressif\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/ethos_u\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/gigadevice\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/infineon\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/intel\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/microchip\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/nordic\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/nuvoton\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/nxp\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/openisa\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/quicklogic\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/renesas\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/rpi_pico\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/silabs\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/st\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/stm32\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/telink\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/ti\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/wurthelektronik\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/xtensa\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/hostap\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/libmetal\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/liblc3\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/fs/littlefs\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/loramac-node\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/gui/lvgl\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/crypto/mbedtls\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/bootloader/mcuboot\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/debug/mipi-sys-t\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/net-tools\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/bsim_hw_models/nrf_hw_models\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/open-amp\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/openthread\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/debug/percepio\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/picolibc\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/debug/segger\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/crypto/tinycrypt\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/tee/tf-m/trusted-firmware-m\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/tee/tf-a/trusted-firmware-a\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/uoscore-uedhoc\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/zcbor\; -DZEPHYR_MODULES=/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/acpica\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_libPhyComv1\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_phy_v1\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_channel_NtNcable\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_channel_multiatt\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_modem_magic\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_modem_BLE_simple\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_device_burst_interferer\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_device_WLAN_actmod\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_2G4_device_playback\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/bsim/components/ext_libCryptov1\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/cmsis\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/cmsis-dsp\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/cmsis-nn\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/edtt\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/fs/fatfs\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/altera\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/ambiq\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/atmel\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/espressif\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/ethos_u\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/gigadevice\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/infineon\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/intel\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/microchip\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/nordic\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/nuvoton\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/nxp\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/openisa\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/quicklogic\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/renesas\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/rpi_pico\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/silabs\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/st\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/stm32\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/telink\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/ti\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/wurthelektronik\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/xtensa\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/hostap\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/hal/libmetal\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/liblc3\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/fs/littlefs\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/loramac-node\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/gui/lvgl\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/crypto/mbedtls\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/bootloader/mcuboot\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/debug/mipi-sys-t\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/tools/net-tools\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/bsim_hw_models/nrf_hw_models\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/open-amp\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/openthread\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/debug/percepio\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/picolibc\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/debug/segger\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/crypto/tinycrypt\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/tee/tf-m/trusted-firmware-m\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/tee/tf-a/trusted-firmware-a\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/uoscore-uedhoc\;/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/git/modules/lib/zcbor\; -DCMAKE_TOOLCHAIN_FILE= -DUSER_CACHE_DIR=/scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/build/.cache -DZEPHYR_EXTRA_MODULES= -Wno-dev' WARNING: Backtrace (BB generated script): #1: cmake_do_configure, /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/temp/run.do_configure.668681, line 169 #2: do_configure, /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/temp/run.do_configure.668681, line 148 #3: main, /scratch/sandeep/yocto/yp-scarthgap/build-up-zep/tmp-newlib/work/cortexa9-vfp-yocto-eabi/zephyr-philosophers/3.6.0+git/temp/run.do_configure.668681, line 187
diff --git a/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc b/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc index 5191b9a..579fd6c 100644 --- a/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc +++ b/meta-zephyr-core/recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc @@ -18,6 +18,11 @@ EXTRA_OECMAKE = "\ -DZEPHYR_BASE=${ZEPHYR_BASE} \ -DBOARD=${BOARD} \ -DARCH=${ARCH} \ + -DBOARD_DIR=${BOARD_DIR} \ + -DARCH_DIR=${ARCH_DIR} \ + -DBOARD_ROOT=${BOARD_ROOT} \ + -DBOARD_EXTENSION_DIRS=${BOARD_EXTENSION_DIRS} \ + -DSOC_ROOT=${SOC_ROOT} \ -DZEPHYR_TOOLCHAIN_VARIANT=${ZEPHYR_TOOLCHAIN_VARIANT} \ -DZEPHYR_MODULES=${ZEPHYR_MODULES} \ "
Add board extension support variables where user can specify the BOARD_ROOT variable for out-of-tree custom boards. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> --- .../recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc | 5 +++++ 1 file changed, 5 insertions(+)