diff mbox

[v2,2/3] add support for odroid mali GL in kodi

Message ID 20160525174632.7086-2-daggs@gmx.com
State Rejected
Headers show

Commit Message

Dagg Stompler May 25, 2016, 5:46 p.m. UTC
add GL support to the odroid c2 boards

Signed-off-by: Dagg <daggs@gmx.com>
---
 package/kodi/Config.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Bernd Kuhls May 25, 2016, 7:31 p.m. UTC | #1
Hi,

Am Wed, 25 May 2016 20:46:31 +0300 schrieb Dagg:

> add GL support to the odroid c2 boards
> 
> Signed-off-by: Dagg <daggs@gmx.com>
> ---
>  package/kodi/Config.in | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/kodi/Config.in b/package/kodi/Config.in
> index ff2e75c..7b26abf 100644
> --- a/package/kodi/Config.in
> +++ b/package/kodi/Config.in

the subject of the patch has nothing to do with the content ;)

> -	default y if (BR2_arm || (BR2_mipsel && BR2_TOOLCHAIN_USES_GLIBC) || BR2_i386 || BR2_x86_64) \
> +	default y if (BR2_arm || BR2_aarch64 || (BR2_mipsel && BR2_TOOLCHAIN_USES_GLIBC) || BR2_i386 || BR2_x86_64) \

Kodi 16.x-Jarvis will not compile on aarch64, this arch will be
supported with the upcoming 17.x-Krypton release:
https://github.com/xbmc/xbmc/commit/487da7934b6bbcaa3b5d8350bcb44dd48c9027f7

Regards, Bernd
Dagg Stompler May 25, 2016, 8:09 p.m. UTC | #2
Greetings,

> Sent: Wednesday, May 25, 2016 at 10:31 PM
> From: "Bernd Kuhls" <bernd.kuhls@t-online.de>
> To: buildroot@uclibc.org
> Subject: Re: [Buildroot] [PATCH v2 2/3] add support for odroid mali GL in kodi
>
> Hi,
> 
> Am Wed, 25 May 2016 20:46:31 +0300 schrieb Dagg:
> 
> > add GL support to the odroid c2 boards
> > 
> > Signed-off-by: Dagg <daggs@gmx.com>
> > ---
> >  package/kodi/Config.in | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/package/kodi/Config.in b/package/kodi/Config.in
> > index ff2e75c..7b26abf 100644
> > --- a/package/kodi/Config.in
> > +++ b/package/kodi/Config.in
> 
> the subject of the patch has nothing to do with the content ;)
> 
> > -	default y if (BR2_arm || (BR2_mipsel && BR2_TOOLCHAIN_USES_GLIBC) || BR2_i386 || BR2_x86_64) \
> > +	default y if (BR2_arm || BR2_aarch64 || (BR2_mipsel && BR2_TOOLCHAIN_USES_GLIBC) || BR2_i386 || BR2_x86_64) \
> 
> Kodi 16.x-Jarvis will not compile on aarch64, this arch will be
> supported with the upcoming 17.x-Krypton release:
> https://github.com/xbmc/xbmc/commit/487da7934b6bbcaa3b5d8350bcb44dd48c9027f7
> 
> Regards, Bernd
> 
you are correct, please ignore this patch.
diff mbox

Patch

diff --git a/package/kodi/Config.in b/package/kodi/Config.in
index ff2e75c..7b26abf 100644
--- a/package/kodi/Config.in
+++ b/package/kodi/Config.in
@@ -1,6 +1,6 @@ 
 config BR2_PACKAGE_KODI_ARCH_SUPPORTS
 	bool
-	default y if (BR2_arm || (BR2_mipsel && BR2_TOOLCHAIN_USES_GLIBC) || BR2_i386 || BR2_x86_64) \
+	default y if (BR2_arm || BR2_aarch64 || (BR2_mipsel && BR2_TOOLCHAIN_USES_GLIBC) || BR2_i386 || BR2_x86_64) \
 		&& BR2_PACKAGE_BOOST_ARCH_SUPPORTS \
 		&& BR2_TOOLCHAIN_HAS_SYNC_8
 
@@ -24,7 +24,7 @@  config BR2_PACKAGE_KODI_GL
 	bool
 	default y
 	depends on BR2_PACKAGE_HAS_LIBGL
-	depends on !BR2_arm # kodi needs egl/gles on arm
+	depends on !BR2_arm || !BR2_aarch64 # kodi needs egl/gles on arm
 
 comment "kodi needs an OpenGL or an openGL ES and EGL backend"
 	depends on BR2_i386 || BR2_x86_64