From 25c5c214f38ca690b03533e12fb5a4d774c7eae0 Mon Sep 17 00:00:00 2001 From: Laukik Hase Date: Thu, 10 Mar 2022 14:26:37 +0530 Subject: [PATCH] kconfig: Changed default values of bool configs - Some bool configs were using default values true and false, instead of y and n. --- components/mdns/host_test/components/esp_netif_linux/Kconfig | 2 +- components/mqtt/Kconfig | 1 - examples/protocols/https_server/simple/main/Kconfig.projbuild | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/components/mdns/host_test/components/esp_netif_linux/Kconfig b/components/mdns/host_test/components/esp_netif_linux/Kconfig index c903f7ca5f..f91ec201bd 100644 --- a/components/mdns/host_test/components/esp_netif_linux/Kconfig +++ b/components/mdns/host_test/components/esp_netif_linux/Kconfig @@ -2,7 +2,7 @@ menu "LWIP-MOCK-CONFIG" config LWIP_IPV6 bool "Enable IPv6" - default true + default y help Enable/disable IPv6 diff --git a/components/mqtt/Kconfig b/components/mqtt/Kconfig index fd1d4a6c03..06f06a1f93 100644 --- a/components/mqtt/Kconfig +++ b/components/mqtt/Kconfig @@ -120,7 +120,6 @@ menu "ESP-MQTT Configurations" config MQTT_TASK_CORE_SELECTION_ENABLED bool "Enable MQTT task core selection" - default false help This will enable core selection diff --git a/examples/protocols/https_server/simple/main/Kconfig.projbuild b/examples/protocols/https_server/simple/main/Kconfig.projbuild index ee04640636..462905e413 100644 --- a/examples/protocols/https_server/simple/main/Kconfig.projbuild +++ b/examples/protocols/https_server/simple/main/Kconfig.projbuild @@ -2,7 +2,6 @@ menu "Example Configuration" config EXAMPLE_ENABLE_HTTPS_USER_CALLBACK bool "Enable user callback with HTTPS Server" - default false help Enable user callback for esp_https_server which can be used to get SSL context (connection information) E.g. Certificate of the connected client