Skip to content

Commit 2304378

Browse files
wqx6pull[bot]
authored andcommitted
ESP32: Add option to enable controller building (#27544)
1 parent 1e525df commit 2304378

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

config/esp32/components/chip/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,10 @@ if (CONFIG_ENABLE_CHIP_SHELL)
158158
chip_gn_arg_append("chip_build_libshell" "true")
159159
endif()
160160

161+
if (CONFIG_ENABLE_CHIP_CONTROLLER_BUILD)
162+
chip_gn_arg_append("chip_build_controller" "true")
163+
endif()
164+
161165
if (CONFIG_ENABLE_WIFI_STATION OR CONFIG_ENABLE_WIFI_AP)
162166
chip_gn_arg_append("chip_enable_wifi" "true")
163167
else()

config/esp32/components/chip/Kconfig

+6
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ menu "CHIP Core"
9696
help
9797
Link the application against CHIP interactive shell.
9898

99+
config ENABLE_CHIP_CONTROLLER_BUILD
100+
bool "Enable chip-controller build"
101+
default n
102+
help
103+
This option enables chip-controller building.
104+
99105
config DISABLE_IPV4
100106
bool "Disable IPv4 functionality in the CHIP stack"
101107
default "n"

0 commit comments

Comments
 (0)