hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
menu "Protocol Stack"
    depends on XENO_DRIVERS_NET
 
comment "Stack parameters"
 
config XENO_DRIVERS_NET_RX_FIFO_SIZE
    int "Size of central RX-FIFO"
    depends on XENO_DRIVERS_NET
    default 32
    help
    Size of FIFO between NICs and stack manager task. Must be power
    of two! Effectively, only CONFIG_RTNET_RX_FIFO_SIZE-1 slots will
    be usable.
 
config XENO_DRIVERS_NET_ETH_P_ALL
    depends on XENO_DRIVERS_NET
    bool "Support for ETH_P_ALL"
    help
    Enables core support for registering listeners on all layer 3
    protocols (ETH_P_ALL). Internally this is currently realised by
    clone-copying incoming frames for those listners, future versions
    will implement buffer sharing for efficiency reasons. Use with
    care, every ETH_P_ALL-listener adds noticable overhead to the
    reception path.
 
config XENO_DRIVERS_NET_RTWLAN
    depends on XENO_DRIVERS_NET
    bool "Real-Time WLAN"
    help
    Enables core support for real-time wireless LAN. RT-WLAN is based
    on low-level access to 802.11-compliant adapters and is currently
    in an experimental stage.
 
comment "Protocols"
 
source "drivers/xenomai/net/stack/ipv4/Kconfig"
source "drivers/xenomai/net/stack/packet/Kconfig"
source "drivers/xenomai/net/stack/rtmac/Kconfig"
source "drivers/xenomai/net/stack/rtcfg/Kconfig"
 
endmenu