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, traceroute, 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_RARPD 32 bool "rarpd" 33 help 34 Installs rarpd. 35 36config BR2_PACKAGE_IPUTILS_RDISC 37 bool "rdisc" 38 default y 39 help 40 Installs rdisc. 41 42config BR2_PACKAGE_IPUTILS_RDISC_SERVER 43 bool "rdisc (server code)" 44 default y 45 depends on BR2_PACKAGE_IPUTILS_RDISC 46 help 47 Builds rdisc with server code. 48 49config BR2_PACKAGE_IPUTILS_TFTPD 50 bool "tftpd" 51 help 52 Installs tftpd. 53 54config BR2_PACKAGE_IPUTILS_TRACEPATH 55 bool "tracepath" 56 default y 57 help 58 Installs tracepath. 59 60config BR2_PACKAGE_IPUTILS_TRACEROUTE6 61 bool "traceroute6" 62 default y 63 help 64 Installs traceroute6. 65 66config BR2_PACKAGE_IPUTILS_NINFOD 67 bool "ninfod" 68 default y 69 depends on BR2_TOOLCHAIN_HAS_THREADS # ninfod requires <pthread.h> 70 help 71 Installs ninfod. 72 73comment "ninfod needs a toolchain w/ threads" 74 depends on !BR2_TOOLCHAIN_HAS_THREADS 75 76endif 77