All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] olimex_a20_olinuxino_lime_mali: bump kernel
@ 2016-11-06 23:14 Francois Perrad
  2016-11-09 21:39 ` Thomas Petazzoni
  2016-11-20 14:39 ` Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Francois Perrad @ 2016-11-06 23:14 UTC (permalink / raw)
  To: buildroot

compat with gcc 5

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 configs/olimex_a20_olinuxino_lime_mali_defconfig | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/configs/olimex_a20_olinuxino_lime_mali_defconfig b/configs/olimex_a20_olinuxino_lime_mali_defconfig
index b2d7dd5..35af5f9 100644
--- a/configs/olimex_a20_olinuxino_lime_mali_defconfig
+++ b/configs/olimex_a20_olinuxino_lime_mali_defconfig
@@ -17,8 +17,10 @@ BR2_ROOTFS_POST_SCRIPT_ARGS="board/olimex/a20_olinuxino/boot-mali.cmd $(TARGET_D
 
 # Kernel
 BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
-BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,linux-sunxi,linux-sunxi,sunxi-v3.4.103-r1)/sunxi-v3.4.103-r1.tar.gz"
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/dan-and/linux-sunxi.git"
+# based on Linux version 3.4.113
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1"
 BR2_LINUX_KERNEL_USE_DEFCONFIG=y
 BR2_LINUX_KERNEL_DEFCONFIG="sun7i"
 BR2_LINUX_KERNEL_INSTALL_TARGET=y
-- 
2.7.4

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

* [Buildroot] [PATCH] olimex_a20_olinuxino_lime_mali: bump kernel
  2016-11-06 23:14 [Buildroot] [PATCH] olimex_a20_olinuxino_lime_mali: bump kernel Francois Perrad
@ 2016-11-09 21:39 ` Thomas Petazzoni
  2016-11-11 13:11   ` François Perrad
  2016-11-20 14:39 ` Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2016-11-09 21:39 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon,  7 Nov 2016 00:14:08 +0100, Francois Perrad wrote:

>  BR2_LINUX_KERNEL=y
> -BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
> -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,linux-sunxi,linux-sunxi,sunxi-v3.4.103-r1)/sunxi-v3.4.103-r1.tar.gz"
> +BR2_LINUX_KERNEL_CUSTOM_GIT=y
> +BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/dan-and/linux-sunxi.git"
> +# based on Linux version 3.4.113
> +BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1"

I really dislike using random git trees instead of more officially
recognized ones. There are really no branches/tags in the linux-sunxi
repository that work with gcc 5.x for this board?

Thanks!

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

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

* [Buildroot] [PATCH] olimex_a20_olinuxino_lime_mali: bump kernel
  2016-11-09 21:39 ` Thomas Petazzoni
@ 2016-11-11 13:11   ` François Perrad
  0 siblings, 0 replies; 4+ messages in thread
From: François Perrad @ 2016-11-11 13:11 UTC (permalink / raw)
  To: buildroot

2016-11-09 22:39 GMT+01:00 Thomas Petazzoni
<thomas.petazzoni@free-electrons.com>:
> Hello,
>
> On Mon,  7 Nov 2016 00:14:08 +0100, Francois Perrad wrote:
>
>>  BR2_LINUX_KERNEL=y
>> -BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
>> -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,linux-sunxi,linux-sunxi,sunxi-v3.4.103-r1)/sunxi-v3.4.103-r1.tar.gz"
>> +BR2_LINUX_KERNEL_CUSTOM_GIT=y
>> +BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/dan-and/linux-sunxi.git"
>> +# based on Linux version 3.4.113
>> +BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="dbabbacbbf8984dea0a8c893b38b376a6ecbb3c1"
>
> I really dislike using random git trees instead of more officially
> recognized ones. There are really no branches/tags in the linux-sunxi
> repository that work with gcc 5.x for this board?
>

On https://github.com/linux-sunxi/linux-sunxi:
- branch sunxi-3.4 : no tag since 2014
- branch sunxi-next : active, currently synchronized with 4.9-rc4, no
tag, and no Mali support

https://github.com/dan-and/linux-sunxi is referenced in
https://linux-sunxi.org/Linux#External_links . The maintenance of
sunxi-3.4 is here now.

AFAIK, there is no alternative.

Fran?ois

> Thanks!
>
> Thomas
> --
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux and Kernel engineering
> http://free-electrons.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH] olimex_a20_olinuxino_lime_mali: bump kernel
  2016-11-06 23:14 [Buildroot] [PATCH] olimex_a20_olinuxino_lime_mali: bump kernel Francois Perrad
  2016-11-09 21:39 ` Thomas Petazzoni
@ 2016-11-20 14:39 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-11-20 14:39 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon,  7 Nov 2016 00:14:08 +0100, Francois Perrad wrote:
> compat with gcc 5
> 
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  configs/olimex_a20_olinuxino_lime_mali_defconfig | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)

Applied to master, after tweaking the commit log. Thanks!

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

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

end of thread, other threads:[~2016-11-20 14:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-06 23:14 [Buildroot] [PATCH] olimex_a20_olinuxino_lime_mali: bump kernel Francois Perrad
2016-11-09 21:39 ` Thomas Petazzoni
2016-11-11 13:11   ` François Perrad
2016-11-20 14:39 ` 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.