1
0
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:
Leandro Lanzieri 2021-03-09 10:00:09 +01:00 committed by GitHub
commit 37419b2b3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 44 additions and 0 deletions

View File

@ -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"

View 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

View 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

View 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

View File

@ -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
View 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