forked from M-Labs/zynq-rs
libboard_zynq/smoltcp: default without ipv6 support
SZL netboot binary size too large with ipv6. We can enable the ipv6 support in the runtime crate instead.
This commit is contained in:
parent
73e4e4fd03
commit
e73ec731aa
|
@ -8,6 +8,7 @@ edition = "2018"
|
|||
[features]
|
||||
target_zc706 = []
|
||||
target_cora_z7_10 = []
|
||||
ipv6 = [ "smoltcp/proto-ipv6" ]
|
||||
|
||||
[dependencies]
|
||||
volatile-register = "0.2"
|
||||
|
@ -21,5 +22,5 @@ libcortex_a9 = { path = "../libcortex_a9" }
|
|||
|
||||
[dependencies.smoltcp]
|
||||
version = "0.6"
|
||||
features = ["ethernet", "proto-ipv4", "proto-ipv6", "socket-tcp"]
|
||||
features = ["ethernet", "proto-ipv4", "socket-tcp"]
|
||||
default-features = false
|
||||
|
|
Loading…
Reference in New Issue