From 9b88ecc1b233aa6644ae3d55588c0dee8ea0f61a Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Sat, 21 Mar 2020 12:53:07 +0900 Subject: [PATCH] sim: Make SIM_NETDEV_TAP depends on LINUX||WINDOWS --- arch/sim/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/sim/Kconfig b/arch/sim/Kconfig index 57894999fe8..8861b14b051 100644 --- a/arch/sim/Kconfig +++ b/arch/sim/Kconfig @@ -128,6 +128,7 @@ choice config SIM_NETDEV_TAP bool "Simulated Network Device with TAP/WPCAP" + depends on (HOST_LINUX || HOST_WINDOWS) ---help--- Build in support for a simulated network device using a TAP device on Linux or WPCAP on Windows.