1#TODO add depens for CONFIG_HOST (bk7231u) 2menu "LwIP 2.1.2" 3 config LWIP 4 bool "Enable LWIP" 5 default y 6 7 config IPV6 8 bool "Enable IPV6" 9 default n 10 11 config DHCP 12 bool "Enable DHCP" 13 depends on LWIP 14 default y 15 16 config AUTOIP 17 bool "Enable AUTOIP" 18 depends on LWIP 19 default n 20 21 config MDNS 22 bool "Enable MDNS" 23 depends on LWIP 24 default n 25 26 config TASK_LWIP_PRIO 27 int "Priority of LwIP task" 28 depends on LWIP 29 range 1 10 30 default 4 31 32 config MIDEA 33 bool "Enable MIDEA" 34 depends on LWIP 35 default n 36 37 config LWIP_FAST_DHCP 38 bool "Enable Fast DHCP(use previous IP)" 39 default n 40 41 config HARMONY_LWIP 42 bool "Enable harmony lwip" 43 default n 44 45 #TODO optimize it 46 choice LWIP_MEM 47 depends on LWIP 48 prompt "LWIP Memory Policy" 49 default LWIP_MEM_DEFAULT 50 51 config LWIP_MEM_DEFAULT 52 bool "Default Memory Policy" 53 config LWIP_MEM_REDUCE 54 bool "Reduced Memory Policy" 55 endchoice 56 57endmenu 58