Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wifi: Fix zephyr wi-fi tests #19452

Merged
merged 2 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions scripts/quarantine_zephyr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -187,20 +187,6 @@
- nrf54l15dk/nrf54l15/cpuapp
comment: "Test not aligned for nrf54l15 - missing snippet settings"

- scenarios:
- wifi.build.crypto_enterprise
- wifi.build.wps
- wifi.build.wpa3
- wifi.build.crypto_alt
- wifi.build.crypto_none
- wifi.build.crypto_default
- wifi.build.hostapd_ap
- wifi.build.dpp
- wifi.build.p2p
platforms:
- native_sim
comment: "https://nordicsemi.atlassian.net/browse/NCSDK-30884"

- scenarios:
- net.sockets.tls12.ec_kex
- net.sockets.tls13.ephemeral_kex
Expand Down
5 changes: 5 additions & 0 deletions subsys/net/lib/hostap_crypto/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

# This is for use in NCS with nRF security which works only on nRF platforms
if(NOT DEFINED CONFIG_SOC_FAMILY_NORDIC_NRF)
return()
endif()

zephyr_interface_library_named(hostap_crypto)

set(HOSTAP_BASE ${ZEPHYR_HOSTAP_MODULE_DIR})
Expand Down
2 changes: 1 addition & 1 deletion subsys/net/lib/hostap_crypto/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

if WIFI_NM_WPA_SUPPLICANT
if WIFI_NM_WPA_SUPPLICANT && SOC_FAMILY_NORDIC_NRF

choice WIFI_NM_WPA_SUPPLICANT_CRYPTO_BACKEND
default WIFI_NM_WPA_SUPPLICANT_CRYPTO_EXT
Expand Down
Loading