rpcbind: add/enable rmtcalls support
* add broadcast discovery support of rpc services Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
This commit is contained in:
parent
d6353ad600
commit
402a445661
1 changed files with 17 additions and 2 deletions
|
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=rpcbind
|
||||
PKG_VERSION:=1.2.5
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
|
||||
PKG_SOURCE_URL:=@SF/rpcbind
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
|
@ -17,7 +17,8 @@ PKG_REMOVE_FILES:=autogen.sh aclocal.m4
|
|||
PKG_INSTALL:=1
|
||||
|
||||
PKG_CONFIG_DEPENDS:= \
|
||||
CONFIG_RPCBIND_LIBWRAP
|
||||
CONFIG_RPCBIND_LIBWRAP \
|
||||
CONFIG_RPCBIND_RMTCALLS
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
|
@ -43,6 +44,13 @@ if PACKAGE_rpcbind
|
|||
config RPCBIND_LIBWRAP
|
||||
bool "Enable libwrap (TCP wrappers) support."
|
||||
default y
|
||||
config RPCBIND_RMTCALLS
|
||||
bool "Enable broadcast discovery support of rpc services."
|
||||
help
|
||||
Services such as Kodi (via libnfs) use this functionality to discover available NFS shares on the network.
|
||||
default y
|
||||
|
||||
|
||||
endif
|
||||
endef
|
||||
|
||||
|
@ -57,6 +65,13 @@ else
|
|||
CONFIGURE_ARGS += --disable-libwrap
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_RPCBIND_RMTCALLS),y)
|
||||
CONFIGURE_ARGS += --enable-rmtcalls
|
||||
else
|
||||
CONFIGURE_ARGS += --disable-rmtcalls
|
||||
endif
|
||||
|
||||
|
||||
define Package/rpcbind/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/rpcinfo $(1)/usr/bin/
|
||||
|
|
Loading…
Reference in a new issue