Skip to content

Commit be64fcb

Browse files
author
liuxianliang
committed
[update] remove lwIP 2.1.0.
Signed-off-by: liuxianliang <[email protected]>
1 parent 8bc0345 commit be64fcb

File tree

385 files changed

+3
-156322
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

385 files changed

+3
-156322
lines changed

components/net/Kconfig

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,20 +118,17 @@ config RT_USING_LWIP
118118
config RT_USING_LWIP202
119119
bool "lwIP v2.0.2"
120120

121-
config RT_USING_LWIP210
122-
bool "lwIP v2.1.0"
123-
124121
config RT_USING_LWIP212
125122
bool "lwIP v2.1.2"
126123

127124
endchoice
128125

129-
if (RT_USING_LWIP210 || RT_USING_LWIP202 || RT_USING_LWIP212)
126+
if (RT_USING_LWIP202 || RT_USING_LWIP212)
130127
config RT_USING_LWIP_IPV6
131128
bool "IPV6 protocol"
132129
default n
133130
select NETDEV_USING_IPV6
134-
select NETDEV_IPV6_SCOPES if RT_USING_LWIP210
131+
select NETDEV_IPV6_SCOPES if RT_USING_LWIP212
135132
endif
136133

137134
config RT_LWIP_IGMP

components/net/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cwd = GetCurrentDir()
88
list = os.listdir(cwd)
99

1010
# the default version of LWIP is 2.0.2
11-
if not GetDepend('RT_USING_LWIP141') and not GetDepend('RT_USING_LWIP202') and not GetDepend('RT_USING_LWIP210') and not GetDepend('RT_USING_LWIP212'):
11+
if not GetDepend('RT_USING_LWIP141') and not GetDepend('RT_USING_LWIP202') and not GetDepend('RT_USING_LWIP212'):
1212
AddDepend('RT_USING_LWIP202')
1313

1414
for d in list:

0 commit comments

Comments
 (0)