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: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
f1c94ed0a8
commit
62ce7751b4
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user