1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/esp_common: MODULE_XTENSA has to depend on HAS_ARCH_ESP_XTENSA

ESP32x SoC use either Xtensa cores or RISC-V cores. The Xtensa vendor code has to be compiled only for ESP32x SoCs that are Xtensa-based. Therefore, MODULE_XTENSA has to depend on HAS_ARCH_ESP_XTENSA instead of HAS_ARCH_ESP
This commit is contained in:
Gunar Schorcht 2022-07-01 17:45:09 +02:00
parent 897abd09f2
commit 08cb7adf62

View File

@ -8,8 +8,8 @@
config MODULE_XTENSA
bool
depends on TEST_KCONFIG
depends on HAS_ARCH_ESP
depends on HAS_ARCH_ESP_XTENSA
default y
help
Third-party software components used by the RIOT port for ESP32 and
ESP8266.
Third-party software components used by the RIOT port for Xtensa-based
ESP SoCs.