Files
openharmony_kernel_liteos_a/net/Kconfig
Caoruihong 8784694686 feat: using kconfiglib instead of kconfig
kconfiglib support the kconfig macro language,
we need this feature to handle product related
Kconfig configuration.

Signed-off-by: Caoruihong <crh.cao@huawei.com>
Change-Id: I6bb521e93aab6c67b8bc3ac664b64f5e52089a45
2021-07-08 15:44:47 +08:00

37 lines
624 B
Plaintext

menu "Net"
#config NET_LWIP
# bool "Enable Lwip"
# default y
# help
# extend kernel include runstop, dynload, scatter and cppsupport.
# It can support all or some.
config NET_LWIP_SACK
bool "Enable Lwipsack"
default y
help
Answer Y to enable LiteOS support lwip.
choice
depends on NET_LWIP_SACK
prompt "Lwipsack"
default NET_LWIP_SACK_2_1
help
Enable Lwipsack for 2.x
config NET_LWIP_SACK_2_1
bool "Enable Lwipsack (2.1)"
depends on NET_LWIP_SACK
config NET_LWIP_SACK_2_0
bool "Enable Lwipsack (2.0)"
depends on NET_LWIP_SACK
endchoice
endmenu