From patchwork Thu Feb 2 07:27:32 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 722881 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 3vDWq31N61z9s76 for ; Thu, 2 Feb 2017 18:29:51 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 3E98A3131E; Thu, 2 Feb 2017 07:29:49 +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 8vqYWkgzQh5g; Thu, 2 Feb 2017 07:29:43 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 340EF2FFB2; Thu, 2 Feb 2017 07:28:59 +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 728B71C048D for ; Thu, 2 Feb 2017 07:28:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 703F189F4F for ; Thu, 2 Feb 2017 07:28:24 +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 Qa9YfAcDK9yJ for ; Thu, 2 Feb 2017 07:28:23 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout05.t-online.de (mailout05.t-online.de [194.25.134.82]) by whitealder.osuosl.org (Postfix) with ESMTPS id 02F9089E4D for ; Thu, 2 Feb 2017 07:28:23 +0000 (UTC) Received: from fwd21.aul.t-online.de (fwd21.aul.t-online.de [172.20.27.66]) by mailout05.t-online.de (Postfix) with SMTP id 26E9A426DF6C; Thu, 2 Feb 2017 08:28:15 +0100 (CET) Received: from fli4l.lan.fli4l (TWAZxBZEohFV-JWUu1ZsDR9dgTDU9A48I428832BzxZZPE1CmvLyfMX6M5Q4by9gDR@[84.191.202.111]) by fwd21.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1cZBoT-3kTCTo0; Thu, 2 Feb 2017 08:28:13 +0100 Received: from mahler.lan.fli4l ([192.168.1.1]:43462 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.88) (envelope-from ) id 1cZBoS-0004zz-Qg; Thu, 02 Feb 2017 08:28:13 +0100 From: Bernd Kuhls To: buildroot@buildroot.org Date: Thu, 2 Feb 2017 08:27:32 +0100 Message-Id: <20170202072756.6624-14-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170202072756.6624-1-bernd.kuhls@t-online.de> References: <20170202072756.6624-1-bernd.kuhls@t-online.de> X-ID: TWAZxBZEohFV-JWUu1ZsDR9dgTDU9A48I428832BzxZZPE1CmvLyfMX6M5Q4by9gDR X-TOI-MSGID: e0c54071-2490-4761-8745-f76e69c94dd6 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 14/38] package/kodi: add mips64el 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/package/kodi/Config.in b/package/kodi/Config.in index aab8c624c..cd24fa8b5 100644 --- a/package/kodi/Config.in +++ b/package/kodi/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_KODI_ARCH_SUPPORTS depends on BR2_USE_MMU # libcdio, and others default y if (BR2_aarch64 || BR2_arm || \ (BR2_mipsel && BR2_TOOLCHAIN_USES_GLIBC) || \ + (BR2_mips64el && BR2_TOOLCHAIN_USES_GLIBC) || \ BR2_powerpc64 || BR2_powerpc64le || \ BR2_i386 || BR2_x86_64) \ && BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS \