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:
parent
ee9f2e439d
commit
b0bf595494
@ -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"
|
||||
|
13
cpu/esp32/esp-idf/wpa_supplicant/esp_supplicant/Kconfig
Normal file
13
cpu/esp32/esp-idf/wpa_supplicant/esp_supplicant/Kconfig
Normal 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.
|
13
cpu/esp32/esp-idf/wpa_supplicant/port/Kconfig
Normal file
13
cpu/esp32/esp-idf/wpa_supplicant/port/Kconfig
Normal 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.
|
13
cpu/esp32/esp-idf/wpa_supplicant/src/ap/Kconfig
Normal file
13
cpu/esp32/esp-idf/wpa_supplicant/src/ap/Kconfig
Normal 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.
|
13
cpu/esp32/esp-idf/wpa_supplicant/src/common/Kconfig
Normal file
13
cpu/esp32/esp-idf/wpa_supplicant/src/common/Kconfig
Normal 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.
|
13
cpu/esp32/esp-idf/wpa_supplicant/src/crypto/Kconfig
Normal file
13
cpu/esp32/esp-idf/wpa_supplicant/src/crypto/Kconfig
Normal 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.
|
13
cpu/esp32/esp-idf/wpa_supplicant/src/eap_peer/Kconfig
Normal file
13
cpu/esp32/esp-idf/wpa_supplicant/src/eap_peer/Kconfig
Normal 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.
|
13
cpu/esp32/esp-idf/wpa_supplicant/src/rsn_supp/Kconfig
Normal file
13
cpu/esp32/esp-idf/wpa_supplicant/src/rsn_supp/Kconfig
Normal 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.
|
13
cpu/esp32/esp-idf/wpa_supplicant/src/tls/Kconfig
Normal file
13
cpu/esp32/esp-idf/wpa_supplicant/src/tls/Kconfig
Normal 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.
|
13
cpu/esp32/esp-idf/wpa_supplicant/src/utils/Kconfig
Normal file
13
cpu/esp32/esp-idf/wpa_supplicant/src/utils/Kconfig
Normal 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.
|
13
cpu/esp32/esp-idf/wpa_supplicant/src/wps/Kconfig
Normal file
13
cpu/esp32/esp-idf/wpa_supplicant/src/wps/Kconfig
Normal 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.
|
Loading…
Reference in New Issue
Block a user