From e6dbe45304bacf6a9ca405f24acbda3afece4cb3 Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Mon, 30 Jun 2025 16:10:41 +0200 Subject: [PATCH] drivers fake_entropy_native_sim: Remove NATIVE_APPLICATION support It is not possible to build anymore in that mode, so we do not need to support it in this driver cmake files. Signed-off-by: Alberto Escolar Piedras --- drivers/entropy/CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/entropy/CMakeLists.txt b/drivers/entropy/CMakeLists.txt index 7db5049cf4e..5ca9eac8a54 100644 --- a/drivers/entropy/CMakeLists.txt +++ b/drivers/entropy/CMakeLists.txt @@ -6,11 +6,7 @@ zephyr_library() if(CONFIG_FAKE_ENTROPY_NATIVE_SIM) zephyr_library_sources(fake_entropy_native_sim.c) - if(CONFIG_NATIVE_LIBRARY) - target_sources(native_simulator INTERFACE fake_entropy_native_bottom.c) - else() - zephyr_library_sources(fake_entropy_native_bottom.c) - endif() + target_sources(native_simulator INTERFACE fake_entropy_native_bottom.c) endif() zephyr_library_sources_ifdef(CONFIG_USERSPACE entropy_handlers.c)