Commit 62ce7751 authored by Bernd Kuhls's avatar Bernd Kuhls Committed by Peter Korsgaard
Browse files

package/kodi: Add support for libssh

This patch depends on http://patchwork.ozlabs.org/patch/512480/


and adds sftp support to the virtual filesystems supported by Kodi.

Signed-off-by: default avatarBernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent f1c94ed0
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -218,6 +218,12 @@ config BR2_PACKAGE_KODI_LIBSMBCLIENT
	help
	  Enable Samba support

config BR2_PACKAGE_KODI_LIBSSH
	bool "ssh"
	select BR2_PACKAGE_LIBSSH
	help
	  Enable sftp virtual filesystem using libssh.

config BR2_PACKAGE_KODI_LIBTHEORA
	bool "theora"
	select BR2_PACKAGE_LIBTHEORA
+7 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@ KODI_CONF_OPTS += \
	--disable-openmax \
	--disable-projectm \
	--disable-pulse \
	--disable-ssh \
	--disable-vdpau \
	--disable-vtbdecoder \
	--enable-optimizations
@@ -172,6 +171,13 @@ else
KODI_CONF_OPTS += --disable-airplay
endif

ifeq ($(BR2_PACKAGE_KODI_LIBSSH),y)
KODI_DEPENDENCIES += libssh
KODI_CONF_OPTS += --enable-ssh
else
KODI_CONF_OPTS += --disable-ssh
endif

ifeq ($(BR2_PACKAGE_KODI_AVAHI),y)
KODI_DEPENDENCIES += avahi
KODI_CONF_OPTS += --enable-avahi