1config BR2_PACKAGE_IPUTILS 2 bool "iputils" 3 depends on BR2_USE_MMU # fork() 4 help 5 This package is set of small useful utilities for Linux 6 networking. It includes complete versions of ping, arping, 7 etc. 8 9 https://github.com/iputils/iputils 10 11if BR2_PACKAGE_IPUTILS 12 13config BR2_PACKAGE_IPUTILS_ARPING 14 bool "arping" 15 default y 16 help 17 Installs arping. 18 19config BR2_PACKAGE_IPUTILS_CLOCKDIFF 20 bool "clockdiff" 21 default y 22 help 23 Installs clockdiff. 24 25config BR2_PACKAGE_IPUTILS_PING 26 bool "ping" 27 default y 28 help 29 Installs ping. 30 31config BR2_PACKAGE_IPUTILS_TRACEPATH 32 bool "tracepath" 33 default y 34 help 35 Installs tracepath. 36 37comment "ninfod needs a toolchain w/ threads" 38 depends on !BR2_TOOLCHAIN_HAS_THREADS 39 40endif 41