File tree Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1
1
menu "Networking applications"
2
+ source "$BR2_EXTERNAL_CURIOS_PATH/package/mping/Config.in"
2
3
source "$BR2_EXTERNAL_CURIOS_PATH/package/nft-helper/Config.in"
3
4
source "$BR2_EXTERNAL_CURIOS_PATH/package/openresty/Config.in"
4
5
endmenu
Original file line number Diff line number Diff line change
1
+ config BR2_PACKAGE_MPING
2
+ bool "mping"
3
+ help
4
+ A simple multicast ping program. Can act as both sender and
5
+ receiver/reflector of UDP multicast, IPv4 and IPv6 supported.
6
+
7
+ http://github.com/troglobit/mping
Original file line number Diff line number Diff line change
1
+ # From https://github.com/troglobit/mping/releases
2
+ sha256 36005f5520cfd078dd308e92ec18d191520afd9b6735148dfdc740dd440ec56f mping-2.0.tar.gz
3
+ # Locally calculated
4
+ sha256 203eb328cda4eb6934f54e421023fb05366303e80343e4bbbd6bd78bf9c947ad LICENSE
Original file line number Diff line number Diff line change
1
+ # ###############################################################################
2
+ #
3
+ # mping
4
+ #
5
+ # ###############################################################################
6
+
7
+ MPING_VERSION = 2.0
8
+ MPING_SITE = https://github.com/troglobit/mping/releases/download/v$(MPING_VERSION )
9
+ MPING_LICENSE = MIT
10
+ MPING_LICENSE_FILES = LICENSE
11
+
12
+ define MPING_BUILD_CMDS
13
+ $(TARGET_CONFIGURE_OPTS ) $(MAKE ) -C $(@D ) all
14
+ endef
15
+
16
+ define MPING_INSTALL_TARGET_CMDS
17
+ $(INSTALL ) -D -m 0755 $(@D ) /mping $(TARGET_DIR ) /usr/bin/mping
18
+ endef
19
+
20
+ $(eval $(generic-package))
You can’t perform that action at this time.
0 commit comments