From 0645371400ab2c103682eaad57b1883a3322c400 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Wed, 20 Jul 2022 17:18:19 +0200 Subject: [PATCH] cpu/esp_common: rename architecture to riscv_esp32 to rv32 --- cpu/esp_common/Makefile.dep | 2 +- cpu/esp_common/Makefile.features | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu/esp_common/Makefile.dep b/cpu/esp_common/Makefile.dep index 36dea9bee4..cbf337ea17 100644 --- a/cpu/esp_common/Makefile.dep +++ b/cpu/esp_common/Makefile.dep @@ -25,7 +25,7 @@ ifeq (xtensa,$(CPU_ARCH)) USEMODULE += xtensa endif -ifeq (riscv_esp32,$(CPU_ARCH)) +ifeq (rv32,$(CPU_ARCH)) USEMODULE += esp_riscv endif diff --git a/cpu/esp_common/Makefile.features b/cpu/esp_common/Makefile.features index 21e4fa78b3..d36e47dcee 100644 --- a/cpu/esp_common/Makefile.features +++ b/cpu/esp_common/Makefile.features @@ -26,7 +26,7 @@ ifeq (xtensa,$(CPU_ARCH)) FEATURES_PROVIDED += arch_esp_xtensa endif -ifeq (riscv_esp32,$(CPU_ARCH)) +ifeq (rv32,$(CPU_ARCH)) FEATURES_PROVIDED += arch_esp_riscv endif