All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support
@ 2018-02-26 15:41 Mahyar Koshkouei
  2018-02-26 15:41 ` [Buildroot] [PATCH 2/2] mpv: security bump to 0.27.2 Mahyar Koshkouei
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Mahyar Koshkouei @ 2018-02-26 15:41 UTC (permalink / raw)
  To: buildroot

A compile error occurs when attempting to compile mpv with mali support
(eg. when odroid-mali package is selected).

Signed-off-by: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>
---
 package/mpv/mpv.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/mpv/mpv.mk b/package/mpv/mpv.mk
index 8d10aa7c47..d577674bd9 100644
--- a/package/mpv/mpv.mk
+++ b/package/mpv/mpv.mk
@@ -31,7 +31,8 @@ MPV_CONF_OPTS = \
 	--disable-uchardet \
 	--disable-vapoursynth \
 	--disable-vapoursynth-lazy \
-	--disable-vdpau
+	--disable-vdpau \
+	--disable-mali-fbdev
 
 # ALSA support requires pcm+mixer
 ifeq ($(BR2_PACKAGE_ALSA_LIB_MIXER)$(BR2_PACKAGE_ALSA_LIB_PCM),yy)
-- 
2.16.2

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

* [Buildroot] [PATCH 2/2] mpv: security bump to 0.27.2
  2018-02-26 15:41 [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support Mahyar Koshkouei
@ 2018-02-26 15:41 ` Mahyar Koshkouei
  2018-02-27 20:06   ` Peter Korsgaard
  2018-02-26 19:14 ` [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support daggs
  2018-02-27 20:02 ` Peter Korsgaard
  2 siblings, 1 reply; 7+ messages in thread
From: Mahyar Koshkouei @ 2018-02-26 15:41 UTC (permalink / raw)
  To: buildroot

Fixes CVE-2018-6360.

Signed-off-by: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>
---
 package/mpv/mpv.hash | 2 +-
 package/mpv/mpv.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/mpv/mpv.hash b/package/mpv/mpv.hash
index 60fb84335e..1dac3a4940 100644
--- a/package/mpv/mpv.hash
+++ b/package/mpv/mpv.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256 341d8bf18b75c1f78d5b681480b5b7f5c8b87d97a0d4f53a5648ede9c219a49c v0.27.0.tar.gz
+sha256 2ad104d83fd3b2b9457716615acad57e479fd1537b8fc5e37bfe9065359b50be v0.27.2.tar.gz
diff --git a/package/mpv/mpv.mk b/package/mpv/mpv.mk
index d577674bd9..f38a6b916f 100644
--- a/package/mpv/mpv.mk
+++ b/package/mpv/mpv.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-MPV_VERSION = 0.27.0
+MPV_VERSION = 0.27.2
 MPV_SITE = https://github.com/mpv-player/mpv/archive
 MPV_SOURCE = v$(MPV_VERSION).tar.gz
 MPV_DEPENDENCIES = \
-- 
2.16.2

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

* [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support
  2018-02-26 15:41 [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support Mahyar Koshkouei
  2018-02-26 15:41 ` [Buildroot] [PATCH 2/2] mpv: security bump to 0.27.2 Mahyar Koshkouei
@ 2018-02-26 19:14 ` daggs
  2018-02-27 13:01   ` Mahyar
  2018-02-27 20:02 ` Peter Korsgaard
  2 siblings, 1 reply; 7+ messages in thread
From: daggs @ 2018-02-26 19:14 UTC (permalink / raw)
  To: buildroot

Greetings Mahyar ,

>
> A compile error occurs when attempting to compile mpv with mali support
> (eg. when odroid-mali package is selected).
> 
> Signed-off-by: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>
> ---
>  package/mpv/mpv.mk | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/package/mpv/mpv.mk b/package/mpv/mpv.mk
> index 8d10aa7c47..d577674bd9 100644
> --- a/package/mpv/mpv.mk
> +++ b/package/mpv/mpv.mk
> @@ -31,7 +31,8 @@ MPV_CONF_OPTS = \
>  	--disable-uchardet \
>  	--disable-vapoursynth \
>  	--disable-vapoursynth-lazy \
> -	--disable-vdpau
> +	--disable-vdpau \
> +	--disable-mali-fbdev
>  
>  # ALSA support requires pcm+mixer
>  ifeq ($(BR2_PACKAGE_ALSA_LIB_MIXER)$(BR2_PACKAGE_ALSA_LIB_PCM),yy)
> -- 
> 2.16.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
> 

I wonder, did it ever compiled when odroid mali is selected?

Dagg.

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

* [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support
  2018-02-26 19:14 ` [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support daggs
@ 2018-02-27 13:01   ` Mahyar
  2018-02-27 14:41     ` daggs
  0 siblings, 1 reply; 7+ messages in thread
From: Mahyar @ 2018-02-27 13:01 UTC (permalink / raw)
  To: buildroot

Hi Dagg,

The compile failed when odroid-mali specifically was selected. Other Mali packages may work, but I've chosen to disable Mali support until someone with a Mali device can test and fix its support.

Kind Regards,
Mahyar


On 26 February 2018 19:14:03 GMT+00:00, daggs <daggs@gmx.com> wrote:
>Greetings Mahyar ,
>
>>
>> A compile error occurs when attempting to compile mpv with mali
>support
>> (eg. when odroid-mali package is selected).
>> 
>> Signed-off-by: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>
>> ---
>>  package/mpv/mpv.mk | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>> 
>> diff --git a/package/mpv/mpv.mk b/package/mpv/mpv.mk
>> index 8d10aa7c47..d577674bd9 100644
>> --- a/package/mpv/mpv.mk
>> +++ b/package/mpv/mpv.mk
>> @@ -31,7 +31,8 @@ MPV_CONF_OPTS = \
>>  	--disable-uchardet \
>>  	--disable-vapoursynth \
>>  	--disable-vapoursynth-lazy \
>> -	--disable-vdpau
>> +	--disable-vdpau \
>> +	--disable-mali-fbdev
>>  
>>  # ALSA support requires pcm+mixer
>>  ifeq ($(BR2_PACKAGE_ALSA_LIB_MIXER)$(BR2_PACKAGE_ALSA_LIB_PCM),yy)
>> -- 
>> 2.16.2
>> 
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
>> 
>
>I wonder, did it ever compiled when odroid mali is selected?
>
>Dagg.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180227/c694b24e/attachment.html>

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

* [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support
  2018-02-27 13:01   ` Mahyar
@ 2018-02-27 14:41     ` daggs
  0 siblings, 0 replies; 7+ messages in thread
From: daggs @ 2018-02-27 14:41 UTC (permalink / raw)
  To: buildroot

An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180227/955df75c/attachment.html>

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

* [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support
  2018-02-26 15:41 [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support Mahyar Koshkouei
  2018-02-26 15:41 ` [Buildroot] [PATCH 2/2] mpv: security bump to 0.27.2 Mahyar Koshkouei
  2018-02-26 19:14 ` [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support daggs
@ 2018-02-27 20:02 ` Peter Korsgaard
  2 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2018-02-27 20:02 UTC (permalink / raw)
  To: buildroot

>>>>> "Mahyar" == Mahyar Koshkouei <mahyar.koshkouei@gmail.com> writes:

 > A compile error occurs when attempting to compile mpv with mali support
 > (eg. when odroid-mali package is selected).

 > Signed-off-by: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>

Committed after adding an autobuilder reference, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] mpv: security bump to 0.27.2
  2018-02-26 15:41 ` [Buildroot] [PATCH 2/2] mpv: security bump to 0.27.2 Mahyar Koshkouei
@ 2018-02-27 20:06   ` Peter Korsgaard
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2018-02-27 20:06 UTC (permalink / raw)
  To: buildroot

>>>>> "Mahyar" == Mahyar Koshkouei <mahyar.koshkouei@gmail.com> writes:

 > Fixes CVE-2018-6360.
 > Signed-off-by: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>

Committed after adding a description of the CVE, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2018-02-27 20:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-26 15:41 [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support Mahyar Koshkouei
2018-02-26 15:41 ` [Buildroot] [PATCH 2/2] mpv: security bump to 0.27.2 Mahyar Koshkouei
2018-02-27 20:06   ` Peter Korsgaard
2018-02-26 19:14 ` [Buildroot] [PATCH 1/2] mpv: disable mali-fbdev support daggs
2018-02-27 13:01   ` Mahyar
2018-02-27 14:41     ` daggs
2018-02-27 20:02 ` Peter Korsgaard

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.