Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[lwip][plan A] 增加LWIP上游同步版本 #5627

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions components/net/lwip/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,34 @@ if RT_USING_LWIP
config RT_USING_LWIP212
bool "lwIP v2.1.2"

config RT_USING_LWIP_LATEST
bool "lwIP latest"
select PKG_USING_LWIP

endchoice

# ---- auxiliary package ------
# https://github.com/RT-Thread-packages/lwip

config PKG_USING_LWIP
bool
default n

if PKG_USING_LWIP
config PKG_LWIP_PATH
string
default "/packages/iot/lwip"

config PKG_LWIP_VER
string
default "latest" if RT_USING_LWIP_LATEST
endif

# -----------------------------

config RT_USING_LWIP_VER_NUM
hex
default 0x99999 if RT_USING_LWIP_LATEST
default 0x20102 if RT_USING_LWIP212
default 0x20003 if RT_USING_LWIP203
default 0x10401 if RT_USING_LWIP141
Expand Down