mirror of
https://github.com/apache/nuttx.git
synced 2026-08-09 06:25:09 +00:00
So that when adding new boards, duplicate content will not be copied.
Test:
1. Refreshing board configurations
./tools/refresh.sh --silent arch:xtensa
2. Check if there is anything missing
$ git diff HEAD . | grep "^[+-]" | sed 's/^[-+]*//' | sed 's/^ [ab]*//' | grep -v "^$" | sort -u | wc -l
66
$ git diff HEAD . | grep "^[+-]" | sort -u | wc -l
132
Signed-off-by: wangjianyu3 <wangjianyu3@xiaomi.com>
19 lines
408 B
Text
19 lines
408 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_BOARD_ESP32S3_DEVKIT
|
|
|
|
choice
|
|
prompt "ESP32-S3-DevKitC-1 version"
|
|
default ESP32S3_DEVKITC_1_V10
|
|
|
|
config ESP32S3_DEVKITC_1_V10
|
|
bool "ESP32-S3-DevKitC-1 v1.0"
|
|
|
|
config ESP32S3_DEVKITC_1_V11
|
|
bool "ESP32-S3-DevKitC-1 v1.1"
|
|
endchoice
|
|
|
|
endif # ARCH_BOARD_ESP32S3_DEVKIT
|