Skip to content

Commit 126fb2b

Browse files
committed
boards: xtensa: esp_wrover_kit: Convert to v2
Converts the board to hwmv2 Signed-off-by: Jamie McCrae <[email protected]>
1 parent fad5026 commit 126fb2b

23 files changed

+137
-21
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
config BOARD_ESP_WROVER_KIT
5+
select SOC_ESP32_PROCPU if BOARD_ESP_WROVER_KIT_ESP32_PROCPU
6+
select SOC_ESP32_APPCPU if BOARD_ESP_WROVER_KIT_ESP32_APPCPU

boards/boards_legacy/xtensa/esp_wrover_kit/Kconfig.defconfig renamed to boards/espressif/esp_wrover_kit/Kconfig.defconfig

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
# Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
44
# SPDX-License-Identifier: Apache-2.0
55

6-
config BOARD
7-
default "esp_wrover_kit"
8-
depends on BOARD_ESP_WROVER_KIT
6+
if BOARD_ESP_WROVER_KIT_ESP32_PROCPU
97

108
config HEAP_MEM_POOL_ADD_SIZE_BOARD
119
int
@@ -20,3 +18,12 @@ endchoice
2018

2119
config DISK_DRIVER_SDMMC
2220
default y
21+
22+
endif # BOARD_ESP_WROVER_KIT_ESP32_PROCPU
23+
24+
if BOARD_ESP_WROVER_KIT_ESP32_APPCPU
25+
26+
config HEAP_MEM_POOL_ADD_SIZE_BOARD
27+
default 4096
28+
29+
endif # BOARD_ESP_WROVER_KIT_ESP32_APPCPU

boards/boards_legacy/xtensa/esp_wrover_kit/Kconfig.board renamed to boards/espressif/esp_wrover_kit/Kconfig.esp_wrover_kit

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,4 @@
44
# SPDX-License-Identifier: Apache-2.0
55

66
config BOARD_ESP_WROVER_KIT
7-
bool "ESP-WROVER-KIT Development Board"
8-
depends on SOC_SERIES_ESP32
9-
10-
choice SOC_PART_NUMBER
11-
default SOC_ESP32_WROVER_E_N4R8
12-
endchoice
7+
select SOC_ESP32_WROVER_E_N4R8
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
board:
2+
name: esp_wrover_kit
3+
vendor: espressif
4+
socs:
5+
- name: esp32

0 commit comments

Comments
 (0)