[kconfig] fix Kconfig warnings

This commit is contained in:
Meco Man
2023-12-25 20:28:46 +08:00
parent 18c44e6cee
commit 4657312f9d
3 changed files with 14 additions and 16 deletions
+5 -5
View File
@@ -92,15 +92,15 @@ if RT_USING_LWIP
menu "Static IPv4 Address"
config RT_LWIP_IPADDR
string "IPv4: IP address"
default 192.168.1.30
default "192.168.1.30"
config RT_LWIP_GWADDR
string "IPv4: Gateway address"
default 192.168.1.1
default "192.168.1.1"
config RT_LWIP_MSKADDR
string "IPv4: Mask address"
default 255.255.255.0
default "255.255.255.0"
endmenu
config RT_LWIP_UDP
@@ -265,7 +265,7 @@ if RT_USING_LWIP
if LWIP_USING_DHCPD
config DHCPD_SERVER_IP
string "DHCPD SERVER IP address"
default 192.168.169.1
default "192.168.169.1"
config DHCPD_USING_ROUTER
bool "alloc gateway ip for router"
@@ -277,7 +277,7 @@ if RT_USING_LWIP
if LWIP_USING_CUSTOMER_DNS_SERVER
config DHCP_DNS_SERVER_IP
string "Custom DNS server IP address"
default 1.1.1.1
default "1.1.1.1"
endif
endif