1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

cpu/esp32: split esp_idf_wpa_supplicant into several modules

This commit is contained in:
Gunar Schorcht 2022-06-19 16:20:28 +02:00
parent ee9f2e439d
commit b0bf595494
11 changed files with 141 additions and 0 deletions

View File

@ -12,3 +12,14 @@ config MODULE_ESP_IDF_WPA_SUPPLICANT
depends on MODULE_ESP_IDF
help
ESP-IDF WPA supplicant.
rsource "esp_supplicant/Kconfig"
rsource "port/Kconfig"
rsource "src/ap/Kconfig"
rsource "src/common/Kconfig"
rsource "src/crypto/Kconfig"
rsource "src/eap_peer/Kconfig"
rsource "src/rsn_supp/Kconfig"
rsource "src/tls/Kconfig"
rsource "src/utils/Kconfig"
rsource "src/wps/Kconfig"

View File

@ -0,0 +1,13 @@
# 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_ESP_IDF_WPA_SUPPLICANT_ESP_SUPPLICANT
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
help
Additional ESP supplicant code for ESP-IDF WPA supplicant.

View File

@ -0,0 +1,13 @@
# 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_ESP_IDF_WPA_SUPPLICANT_PORT
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
help
ESP-IDF WPA supplicant port code.

View File

@ -0,0 +1,13 @@
# 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_ESP_IDF_WPA_SUPPLICANT_AP
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
help
AP code for ESP-IDF WPA supplicant.

View File

@ -0,0 +1,13 @@
# 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_ESP_IDF_WPA_SUPPLICANT_COMMON
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
help
Common code for ESP-IDF WPA supplicant.

View File

@ -0,0 +1,13 @@
# 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_ESP_IDF_WPA_SUPPLICANT_CRYPTO
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
help
Crypto code for ESP-IDF WPA supplicant.

View File

@ -0,0 +1,13 @@
# 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_ESP_IDF_WPA_SUPPLICANT_RSN_SUPP
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
help
RSN support code for ESP-IDF WPA supplicant.

View File

@ -0,0 +1,13 @@
# 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_ESP_IDF_WPA_SUPPLICANT_AP
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
help
AP code for ESP-IDF WPA supplicant.

View File

@ -0,0 +1,13 @@
# 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_ESP_IDF_WPA_SUPPLICANT_TLS
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
help
TLS code for ESP-IDF WPA supplicant.

View File

@ -0,0 +1,13 @@
# 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_ESP_IDF_WPA_SUPPLICANT_UTILS
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
help
Utilities code for ESP-IDF WPA supplicant.

View File

@ -0,0 +1,13 @@
# 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_ESP_IDF_WPA_SUPPLICANT_WPS
bool
depends on TEST_KCONFIG
depends on MODULE_ESP_IDF
help
WPS code for ESP-IDF WPA supplicant.