mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #16157 from MrKevinWeiss/pr/kconfig/posixinet
sys/posix/inet: Add posix_inet and dependencies to Kconfig
This commit is contained in:
commit
37419b2b3e
@ -11,6 +11,7 @@ rsource "ble/Kconfig"
|
||||
rsource "credman/Kconfig"
|
||||
rsource "gnrc/Kconfig"
|
||||
rsource "sock/Kconfig"
|
||||
rsource "network_layer/Kconfig"
|
||||
rsource "link_layer/Kconfig"
|
||||
rsource "lora/Kconfig"
|
||||
rsource "netif/Kconfig"
|
||||
|
12
sys/net/network_layer/Kconfig
Normal file
12
sys/net/network_layer/Kconfig
Normal file
@ -0,0 +1,12 @@
|
||||
# Copyright (c) 2021 HAW Hamburg
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU Lesser
|
||||
# General Public License v2.1. See the file LICENSE in the top level
|
||||
# directory for more details.
|
||||
#
|
||||
menu "Network Layer"
|
||||
|
||||
rsource "ipv4/addr/Kconfig"
|
||||
rsource "ipv6/addr/Kconfig"
|
||||
|
||||
endmenu # Network Layer
|
10
sys/net/network_layer/ipv4/addr/Kconfig
Normal file
10
sys/net/network_layer/ipv4/addr/Kconfig
Normal file
@ -0,0 +1,10 @@
|
||||
# Copyright (c) 2021 HAW Hamburg
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU Lesser
|
||||
# General Public License v2.1. See the file LICENSE in the top level
|
||||
# directory for more details.
|
||||
#
|
||||
|
||||
config MODULE_IPV4_ADDR
|
||||
bool "IPv4 address conversion"
|
||||
depends on TEST_KCONFIG
|
10
sys/net/network_layer/ipv6/addr/Kconfig
Normal file
10
sys/net/network_layer/ipv6/addr/Kconfig
Normal file
@ -0,0 +1,10 @@
|
||||
# Copyright (c) 2021 HAW Hamburg
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU Lesser
|
||||
# General Public License v2.1. See the file LICENSE in the top level
|
||||
# directory for more details.
|
||||
#
|
||||
|
||||
config MODULE_IPV6_ADDR
|
||||
bool "IPv6 address conversion"
|
||||
depends on TEST_KCONFIG
|
@ -11,6 +11,7 @@ menu "Posix"
|
||||
config MODULE_POSIX_HEADERS
|
||||
bool
|
||||
|
||||
rsource "inet/Kconfig"
|
||||
rsource "sleep/Kconfig"
|
||||
|
||||
endmenu # Posix
|
||||
|
10
sys/posix/inet/Kconfig
Normal file
10
sys/posix/inet/Kconfig
Normal file
@ -0,0 +1,10 @@
|
||||
# Copyright (c) 2021 HAW Hamburg
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU Lesser
|
||||
# General Public License v2.1. See the file LICENSE in the top level
|
||||
# directory for more details.
|
||||
#
|
||||
|
||||
config MODULE_POSIX_INET
|
||||
bool "POSIX Internet Support"
|
||||
select MODULE_POSIX_HEADERS
|
Loading…
Reference in New Issue
Block a user