All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] ti-gfx: bump to version 5_01_01_01
@ 2014-06-03 16:14 Hadrien Boutteville
  2014-06-04 18:04 ` Yann E. MORIN
  2014-06-08 14:35 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Hadrien Boutteville @ 2014-06-03 16:14 UTC (permalink / raw)
  To: buildroot

Note that SDK 5_01_01_01 only support EABIhf.

Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
---
 package/ti-gfx/Config.in | 7 ++++---
 package/ti-gfx/ti-gfx.mk | 8 +-------
 2 files changed, 5 insertions(+), 10 deletions(-)

diff --git a/package/ti-gfx/Config.in b/package/ti-gfx/Config.in
index 4ee8622..bd6189e 100644
--- a/package/ti-gfx/Config.in
+++ b/package/ti-gfx/Config.in
@@ -4,7 +4,8 @@ config BR2_PACKAGE_TI_GFX
 	select BR2_PACKAGE_HAS_LIBGLES
 	select BR2_PACKAGE_HAS_POWERVR
 	select BR2_PACKAGE_FBSET if !BR2_PACKAGE_BUSYBOX # Runtime dependency only
-	depends on BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
+	depends on BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_arm && \
+		BR2_ARM_EABIHF
 	help
 	  Graphics libraries for TI boards.
 
@@ -70,6 +71,6 @@ endchoice
 
 endif
 
-comment "ti-gfx needs an (e)glibc toolchain and a Linux kernel to be built"
+comment "ti-gfx needs an (e)glibc and EABIhf toolchain and a Linux kernel to be built"
 	depends on BR2_arm
-	depends on !(BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC)
+	depends on !(BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_ARM_EABIHF)
diff --git a/package/ti-gfx/ti-gfx.mk b/package/ti-gfx/ti-gfx.mk
index 324e19c..8235917 100644
--- a/package/ti-gfx/ti-gfx.mk
+++ b/package/ti-gfx/ti-gfx.mk
@@ -4,15 +4,9 @@
 #
 ################################################################################
 
-TI_GFX_VERSION = 5_01_00_01
+TI_GFX_VERSION = 5_01_01_01
 TI_GFX_SO_VERSION = 1.10.2359475
-
-ifeq ($(BR2_ARM_EABIHF),y)
 TI_GFX_SOURCE = Graphics_SDK_setuplinux_hardfp_$(TI_GFX_VERSION).bin
-else
-TI_GFX_SOURCE = Graphics_SDK_setuplinux_softfp_$(TI_GFX_VERSION).bin
-endif
-
 TI_GFX_SITE = http://downloads.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/gfxsdk/$(TI_GFX_VERSION)/exports/
 TI_GFX_LICENSE = Technology / Software Publicly Available
 TI_GFX_LICENSE_FILES = TSPA.txt
-- 
2.0.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] ti-gfx: bump to version 5_01_01_01
  2014-06-03 16:14 [Buildroot] [PATCH 1/1] ti-gfx: bump to version 5_01_01_01 Hadrien Boutteville
@ 2014-06-04 18:04 ` Yann E. MORIN
  2014-06-08 14:35 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2014-06-04 18:04 UTC (permalink / raw)
  To: buildroot

Hadrien, All,

On 2014-06-03 18:14 +0200, Hadrien Boutteville spake thusly:
> Note that SDK 5_01_01_01 only support EABIhf.

Then maybe we should fallback to the 5.01.00.01 version for non-EABIhf
builds?

If we want to still support that, of course, but I guess we should.
There are still binary-only, legacy code that is using the softfp ABI,
so I suggest we should stick to supporting it for a while.

Regards,
Yann E. MORIN.

> Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
> ---
>  package/ti-gfx/Config.in | 7 ++++---
>  package/ti-gfx/ti-gfx.mk | 8 +-------
>  2 files changed, 5 insertions(+), 10 deletions(-)
> 
> diff --git a/package/ti-gfx/Config.in b/package/ti-gfx/Config.in
> index 4ee8622..bd6189e 100644
> --- a/package/ti-gfx/Config.in
> +++ b/package/ti-gfx/Config.in
> @@ -4,7 +4,8 @@ config BR2_PACKAGE_TI_GFX
>  	select BR2_PACKAGE_HAS_LIBGLES
>  	select BR2_PACKAGE_HAS_POWERVR
>  	select BR2_PACKAGE_FBSET if !BR2_PACKAGE_BUSYBOX # Runtime dependency only
> -	depends on BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
> +	depends on BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_arm && \
> +		BR2_ARM_EABIHF
>  	help
>  	  Graphics libraries for TI boards.
>  
> @@ -70,6 +71,6 @@ endchoice
>  
>  endif
>  
> -comment "ti-gfx needs an (e)glibc toolchain and a Linux kernel to be built"
> +comment "ti-gfx needs an (e)glibc and EABIhf toolchain and a Linux kernel to be built"
>  	depends on BR2_arm
> -	depends on !(BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC)
> +	depends on !(BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_ARM_EABIHF)
> diff --git a/package/ti-gfx/ti-gfx.mk b/package/ti-gfx/ti-gfx.mk
> index 324e19c..8235917 100644
> --- a/package/ti-gfx/ti-gfx.mk
> +++ b/package/ti-gfx/ti-gfx.mk
> @@ -4,15 +4,9 @@
>  #
>  ################################################################################
>  
> -TI_GFX_VERSION = 5_01_00_01
> +TI_GFX_VERSION = 5_01_01_01
>  TI_GFX_SO_VERSION = 1.10.2359475
> -
> -ifeq ($(BR2_ARM_EABIHF),y)
>  TI_GFX_SOURCE = Graphics_SDK_setuplinux_hardfp_$(TI_GFX_VERSION).bin
> -else
> -TI_GFX_SOURCE = Graphics_SDK_setuplinux_softfp_$(TI_GFX_VERSION).bin
> -endif
> -
>  TI_GFX_SITE = http://downloads.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/gfxsdk/$(TI_GFX_VERSION)/exports/
>  TI_GFX_LICENSE = Technology / Software Publicly Available
>  TI_GFX_LICENSE_FILES = TSPA.txt
> -- 
> 2.0.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] ti-gfx: bump to version 5_01_01_01
  2014-06-03 16:14 [Buildroot] [PATCH 1/1] ti-gfx: bump to version 5_01_01_01 Hadrien Boutteville
  2014-06-04 18:04 ` Yann E. MORIN
@ 2014-06-08 14:35 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2014-06-08 14:35 UTC (permalink / raw)
  To: buildroot

Dear Hadrien Boutteville,

On Tue,  3 Jun 2014 18:14:04 +0200, Hadrien Boutteville wrote:
> Note that SDK 5_01_01_01 only support EABIhf.
> 
> Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
> ---
>  package/ti-gfx/Config.in | 7 ++++---
>  package/ti-gfx/ti-gfx.mk | 8 +-------
>  2 files changed, 5 insertions(+), 10 deletions(-)

Can you fix according to Yann's comments?

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-06-08 14:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-03 16:14 [Buildroot] [PATCH 1/1] ti-gfx: bump to version 5_01_01_01 Hadrien Boutteville
2014-06-04 18:04 ` Yann E. MORIN
2014-06-08 14:35 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.