From patchwork Tue Jun 14 21:00:28 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 635579 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rThrF5DvDz9t0y for ; Wed, 15 Jun 2016 07:00:45 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 5A6FA32FC0; Tue, 14 Jun 2016 21:00:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vwGtal2w5EDg; Tue, 14 Jun 2016 21:00:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id A3E7330754; Tue, 14 Jun 2016 21:00:37 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id E85EA1C1EE6 for ; Tue, 14 Jun 2016 21:00:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E500C8B62D for ; Tue, 14 Jun 2016 21:00:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id c8DmbE7TotbQ for ; Tue, 14 Jun 2016 21:00:35 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout01.t-online.de (mailout01.t-online.de [194.25.134.80]) by whitealder.osuosl.org (Postfix) with ESMTPS id D49C88B69C for ; Tue, 14 Jun 2016 21:00:34 +0000 (UTC) Received: from fwd02.aul.t-online.de (fwd02.aul.t-online.de [172.20.26.148]) by mailout01.t-online.de (Postfix) with SMTP id 3398A4215619 for ; Tue, 14 Jun 2016 23:00:32 +0200 (CEST) Received: from fli4l.lan.fli4l (rCmvXsZFQhSg9oCnHa99M9k7mShaVszji8iUg-Sa332cQDQ7QY1E4ByzrnEOSvXQkP@[84.191.222.14]) by fwd02.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1bCvRm-2e1wn20; Tue, 14 Jun 2016 23:00:30 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:59418 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.87) (envelope-from ) id 1bCvRl-0007IH-AP; Tue, 14 Jun 2016 23:00:29 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Tue, 14 Jun 2016 23:00:28 +0200 Message-Id: <1465938028-8149-2-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.8.1 In-Reply-To: <1465938028-8149-1-git-send-email-bernd.kuhls@t-online.de> References: <1465938028-8149-1-git-send-email-bernd.kuhls@t-online.de> X-ID: rCmvXsZFQhSg9oCnHa99M9k7mShaVszji8iUg-Sa332cQDQ7QY1E4ByzrnEOSvXQkP X-TOI-MSGID: 6fcafb19-a12e-4a36-8e95-2d2b1d24c97e Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 2/2] package/kodi: Add suboption to control UPnP support X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Bernd Kuhls --- package/kodi/Config.in | 5 +++++ package/kodi/kodi.mk | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/package/kodi/Config.in b/package/kodi/Config.in index 281de24..984f7bb 100644 --- a/package/kodi/Config.in +++ b/package/kodi/Config.in @@ -232,6 +232,11 @@ config BR2_PACKAGE_KODI_LIBVA help Enable libva support. +config BR2_PACKAGE_KODI_UPNP + bool "upnp" + help + Enable UPnP support + config BR2_PACKAGE_KODI_OPTICALDRIVE bool diff --git a/package/kodi/kodi.mk b/package/kodi/kodi.mk index 17d20a9..c72c5d1 100644 --- a/package/kodi/kodi.mk +++ b/package/kodi/kodi.mk @@ -187,6 +187,12 @@ else KODI_CONF_OPTS += --disable-vaapi endif +ifeq ($(BR2_PACKAGE_KODI_UPNP),y) +KODI_CONF_OPTS += --enable-upnp +else +KODI_CONF_OPTS += --disable-upnp +endif + ifeq ($(BR2_PACKAGE_KODI_OPTICALDRIVE),y) KODI_CONF_OPTS += --enable-optical-drive --enable-dvdcss else