Commit 20fcdcb3 authored by Jens Zettelmeyer's avatar Jens Zettelmeyer Committed by Thomas Petazzoni
Browse files

batctl: new package



[Thomas:
 - remove trailing whitespace
 - remove "# libnl" comment in Config.in
 - remove BATCTL_SOURCE, which is not needed, since the default value
   is used
 - pass $(TARGET_CONFIGURE_OPTS) in the make environment, not as a
   make option, otherwise the CFLAGS += lines of batctl Makefile do
   not have any effect, and lead to not have the proper include path
   to the libnl header files.]

Signed-off-by: default avatarJens Zettelmeyer <zettelmeyerj@goooglemail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent d09ad262
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1055,6 +1055,7 @@ menu "Networking applications"
	source "package/avahi/Config.in"
	source "package/axel/Config.in"
	source "package/bandwidthd/Config.in"
	source "package/batctl/Config.in"
	source "package/bcusdk/Config.in"
	source "package/bind/Config.in"
	source "package/bluez_utils/Config.in"
+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_BATCTL
	bool "batctl"
	depends on BR2_INET_IPV6
	depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
	select BR2_PACKAGE_LIBNL
	help
	  Batctl is the configuration and debugging tool for batman-adv.

	  http://www.open-mesh.org/projects/batman-adv/wiki/Using-batctl

comment "batctl needs a toolchain w/ IPv6, threads"
	depends on !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS
+2 −0
Original line number Diff line number Diff line
# Locally calculated
sha256	77509ed70232ebc0b73e2fa9471ae13b12d6547d167dda0a82f7a7fad7252c36  batctl-2014.4.0.tar.gz
+21 −0
Original line number Diff line number Diff line
################################################################################
#
# batctl
#
################################################################################

BATCTL_VERSION = 2014.4.0
BATCTL_SITE = http://downloads.open-mesh.org/batman/releases/batman-adv-$(BATCTL_VERSION)
BATCTL_LICENSE = GPLv2
BATCTL_DEPENDENCIES = libnl host-pkgconf

define BATCTL_BUILD_CMDS
	$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) all
endef

define BATCTL_INSTALL_TARGET_CMDS
	$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
		PREFIX=/usr DESTDIR=$(TARGET_DIR) install
endef

$(eval $(generic-package))