This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 9b88ecc sim: Make SIM_NETDEV_TAP depends on LINUX||WINDOWS
9b88ecc is described below
commit 9b88ecc1b233aa6644ae3d55588c0dee8ea0f61a
Author: YAMAMOTO Takashi <[email protected]>
AuthorDate: Sat Mar 21 12:53:07 2020 +0900
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 5789499..8861b14 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.