Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] bitbake: Oldest kernel for nios2 is 3.19
@ 2016-05-08 13:00 Marek Vasut
  2016-05-08 17:06 ` Khem Raj
  0 siblings, 1 reply; 8+ messages in thread
From: Marek Vasut @ 2016-05-08 13:00 UTC (permalink / raw)
  To: openembedded-core; +Cc: Marek Vasut

The oldest kernel version for nios2 is 3.19.0, set it so, otherwise
qemu-nios2 -r ${OLDEST_KERNEL} fails with "FATAL: kernel too old"
message from glibc.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/conf/bitbake.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 1c4175f..2f5db22 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -405,6 +405,7 @@ SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}"
 
 OLDEST_KERNEL = "2.6.32"
 OLDEST_KERNEL_aarch64 = "3.14"
+OLDEST_KERNEL_nios2 = "3.19"
 STAGING_KERNEL_DIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-source"
 STAGING_KERNEL_BUILDDIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-build-artifacts"
 
-- 
2.7.0



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

* Re: [PATCH] bitbake: Oldest kernel for nios2 is 3.19
  2016-05-08 13:00 [PATCH] bitbake: Oldest kernel for nios2 is 3.19 Marek Vasut
@ 2016-05-08 17:06 ` Khem Raj
  2016-05-08 17:19   ` Marek Vasut
  2016-05-10 10:21   ` Ruslan Bilovol
  0 siblings, 2 replies; 8+ messages in thread
From: Khem Raj @ 2016-05-08 17:06 UTC (permalink / raw)
  To: Marek Vasut; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 1413 bytes --]


> On May 8, 2016, at 6:00 AM, Marek Vasut <marex@denx.de> wrote:
> 
> The oldest kernel version for nios2 is 3.19.0, set it so, otherwise
> qemu-nios2 -r ${OLDEST_KERNEL} fails with "FATAL: kernel too old"
> message from glibc.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
> meta/conf/bitbake.conf | 1 +
> 1 file changed, 1 insertion(+)
> 
> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
> index 1c4175f..2f5db22 100644
> --- a/meta/conf/bitbake.conf
> +++ b/meta/conf/bitbake.conf
> @@ -405,6 +405,7 @@ SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}"
> 
> OLDEST_KERNEL = "2.6.32"
> OLDEST_KERNEL_aarch64 = "3.14"
> +OLDEST_KERNEL_nios2 = “3.19"

if you don’t need it on krogoth, then I would suggest to hold this patch for master since
I have a series which upgrades glibc to 2.24 and 2.24 needs 3.x minimum

see

https://github.com/kraj/openembedded-core/commit/1be5ebb2e1e2d39936d13ce158db29954bc6dabe

> STAGING_KERNEL_DIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-source"
> STAGING_KERNEL_BUILDDIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-build-artifacts"
> 
> --
> 2.7.0
> 
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 211 bytes --]

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

* Re: [PATCH] bitbake: Oldest kernel for nios2 is 3.19
  2016-05-08 17:06 ` Khem Raj
@ 2016-05-08 17:19   ` Marek Vasut
  2016-05-08 17:31     ` Khem Raj
  2016-05-10 10:21   ` Ruslan Bilovol
  1 sibling, 1 reply; 8+ messages in thread
From: Marek Vasut @ 2016-05-08 17:19 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

On 05/08/2016 07:06 PM, Khem Raj wrote:
> 
>> On May 8, 2016, at 6:00 AM, Marek Vasut <marex@denx.de> wrote:
>>
>> The oldest kernel version for nios2 is 3.19.0, set it so, otherwise
>> qemu-nios2 -r ${OLDEST_KERNEL} fails with "FATAL: kernel too old"
>> message from glibc.
>>
>> Signed-off-by: Marek Vasut <marex@denx.de>
>> Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
>> ---
>> meta/conf/bitbake.conf | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
>> index 1c4175f..2f5db22 100644
>> --- a/meta/conf/bitbake.conf
>> +++ b/meta/conf/bitbake.conf
>> @@ -405,6 +405,7 @@ SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}"
>>
>> OLDEST_KERNEL = "2.6.32"
>> OLDEST_KERNEL_aarch64 = "3.14"
>> +OLDEST_KERNEL_nios2 = “3.19"
> 
> if you don’t need it on krogoth, then I would suggest to hold this patch for master since
> I have a series which upgrades glibc to 2.24 and 2.24 needs 3.x minimum
> 
> see
> 
> https://github.com/kraj/openembedded-core/commit/1be5ebb2e1e2d39936d13ce158db29954bc6dabe

I don't mind either way. I need 3.19, not 3.2 though, so your patch does
not help me if I understand it correctly.

>> STAGING_KERNEL_DIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-source"
>> STAGING_KERNEL_BUILDDIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-build-artifacts"
>>
>> --
>> 2.7.0
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
> 


-- 
Best regards,
Marek Vasut


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

* Re: [PATCH] bitbake: Oldest kernel for nios2 is 3.19
  2016-05-08 17:19   ` Marek Vasut
@ 2016-05-08 17:31     ` Khem Raj
  2016-05-08 17:55       ` Marek Vasut
  0 siblings, 1 reply; 8+ messages in thread
From: Khem Raj @ 2016-05-08 17:31 UTC (permalink / raw)
  To: Marek Vasut; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 1876 bytes --]

I was just trying to avoid patch conflict :)

On Sun, May 8, 2016 at 10:19 AM Marek Vasut <marex@denx.de> wrote:

> On 05/08/2016 07:06 PM, Khem Raj wrote:
> >
> >> On May 8, 2016, at 6:00 AM, Marek Vasut <marex@denx.de> wrote:
> >>
> >> The oldest kernel version for nios2 is 3.19.0, set it so, otherwise
> >> qemu-nios2 -r ${OLDEST_KERNEL} fails with "FATAL: kernel too old"
> >> message from glibc.
> >>
> >> Signed-off-by: Marek Vasut <marex@denx.de>
> >> Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
> >> ---
> >> meta/conf/bitbake.conf | 1 +
> >> 1 file changed, 1 insertion(+)
> >>
> >> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
> >> index 1c4175f..2f5db22 100644
> >> --- a/meta/conf/bitbake.conf
> >> +++ b/meta/conf/bitbake.conf
> >> @@ -405,6 +405,7 @@ SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}"
> >>
> >> OLDEST_KERNEL = "2.6.32"
> >> OLDEST_KERNEL_aarch64 = "3.14"
> >> +OLDEST_KERNEL_nios2 = “3.19"
> >
> > if you don’t need it on krogoth, then I would suggest to hold this patch
> for master since
> > I have a series which upgrades glibc to 2.24 and 2.24 needs 3.x minimum
> >
> > see
> >
> >
> https://github.com/kraj/openembedded-core/commit/1be5ebb2e1e2d39936d13ce158db29954bc6dabe
>
> I don't mind either way. I need 3.19, not 3.2 though, so your patch does
> not help me if I understand it correctly.
>
> >> STAGING_KERNEL_DIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-source"
> >> STAGING_KERNEL_BUILDDIR =
> "${TMPDIR}/work-shared/${MACHINE}/kernel-build-artifacts"
> >>
> >> --
> >> 2.7.0
> >>
> >> --
> >> _______________________________________________
> >> Openembedded-core mailing list
> >> Openembedded-core@lists.openembedded.org
> >> http://lists.openembedded.org/mailman/listinfo/openembedded-core
> >
>
>
> --
> Best regards,
> Marek Vasut
>

[-- Attachment #2: Type: text/html, Size: 3008 bytes --]

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

* Re: [PATCH] bitbake: Oldest kernel for nios2 is 3.19
  2016-05-08 17:31     ` Khem Raj
@ 2016-05-08 17:55       ` Marek Vasut
  2016-05-08 18:13         ` Khem Raj
  0 siblings, 1 reply; 8+ messages in thread
From: Marek Vasut @ 2016-05-08 17:55 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

On 05/08/2016 07:31 PM, Khem Raj wrote:
> I was just trying to avoid patch conflict :)

If you want me to repost updated patch, just let me know, but the fix
will be really trivial in this case ;-)

> On Sun, May 8, 2016 at 10:19 AM Marek Vasut <marex@denx.de
> <mailto:marex@denx.de>> wrote:
> 
>     On 05/08/2016 07:06 PM, Khem Raj wrote:
>     >
>     >> On May 8, 2016, at 6:00 AM, Marek Vasut <marex@denx.de
>     <mailto:marex@denx.de>> wrote:
>     >>
>     >> The oldest kernel version for nios2 is 3.19.0, set it so, otherwise
>     >> qemu-nios2 -r ${OLDEST_KERNEL} fails with "FATAL: kernel too old"
>     >> message from glibc.
>     >>
>     >> Signed-off-by: Marek Vasut <marex@denx.de <mailto:marex@denx.de>>
>     >> Cc: Richard Purdie <richard.purdie@linuxfoundation.org
>     <mailto:richard.purdie@linuxfoundation.org>>
>     >> ---
>     >> meta/conf/bitbake.conf | 1 +
>     >> 1 file changed, 1 insertion(+)
>     >>
>     >> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
>     >> index 1c4175f..2f5db22 100644
>     >> --- a/meta/conf/bitbake.conf
>     >> +++ b/meta/conf/bitbake.conf
>     >> @@ -405,6 +405,7 @@ SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}"
>     >>
>     >> OLDEST_KERNEL = "2.6.32"
>     >> OLDEST_KERNEL_aarch64 = "3.14"
>     >> +OLDEST_KERNEL_nios2 = “3.19"
>     >
>     > if you don’t need it on krogoth, then I would suggest to hold this
>     patch for master since
>     > I have a series which upgrades glibc to 2.24 and 2.24 needs 3.x
>     minimum
>     >
>     > see
>     >
>     >
>     https://github.com/kraj/openembedded-core/commit/1be5ebb2e1e2d39936d13ce158db29954bc6dabe
> 
>     I don't mind either way. I need 3.19, not 3.2 though, so your patch does
>     not help me if I understand it correctly.
> 
>     >> STAGING_KERNEL_DIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-source"
>     >> STAGING_KERNEL_BUILDDIR =
>     "${TMPDIR}/work-shared/${MACHINE}/kernel-build-artifacts"
>     >>
>     >> --
>     >> 2.7.0
>     >>
>     >> --
>     >> _______________________________________________
>     >> Openembedded-core mailing list
>     >> Openembedded-core@lists.openembedded.org
>     <mailto:Openembedded-core@lists.openembedded.org>
>     >> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>     >
> 
> 
>     --
>     Best regards,
>     Marek Vasut
> 


-- 
Best regards,
Marek Vasut


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

* Re: [PATCH] bitbake: Oldest kernel for nios2 is 3.19
  2016-05-08 17:55       ` Marek Vasut
@ 2016-05-08 18:13         ` Khem Raj
  2016-05-08 18:14           ` Marek Vasut
  0 siblings, 1 reply; 8+ messages in thread
From: Khem Raj @ 2016-05-08 18:13 UTC (permalink / raw)
  To: Marek Vasut; +Cc: Patches and discussions about the oe-core layer

I will just fold it into my series.

On Sun, May 8, 2016 at 10:55 AM, Marek Vasut <marex@denx.de> wrote:
> On 05/08/2016 07:31 PM, Khem Raj wrote:
>> I was just trying to avoid patch conflict :)
>
> If you want me to repost updated patch, just let me know, but the fix
> will be really trivial in this case ;-)
>
>> On Sun, May 8, 2016 at 10:19 AM Marek Vasut <marex@denx.de
>> <mailto:marex@denx.de>> wrote:
>>
>>     On 05/08/2016 07:06 PM, Khem Raj wrote:
>>     >
>>     >> On May 8, 2016, at 6:00 AM, Marek Vasut <marex@denx.de
>>     <mailto:marex@denx.de>> wrote:
>>     >>
>>     >> The oldest kernel version for nios2 is 3.19.0, set it so, otherwise
>>     >> qemu-nios2 -r ${OLDEST_KERNEL} fails with "FATAL: kernel too old"
>>     >> message from glibc.
>>     >>
>>     >> Signed-off-by: Marek Vasut <marex@denx.de <mailto:marex@denx.de>>
>>     >> Cc: Richard Purdie <richard.purdie@linuxfoundation.org
>>     <mailto:richard.purdie@linuxfoundation.org>>
>>     >> ---
>>     >> meta/conf/bitbake.conf | 1 +
>>     >> 1 file changed, 1 insertion(+)
>>     >>
>>     >> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
>>     >> index 1c4175f..2f5db22 100644
>>     >> --- a/meta/conf/bitbake.conf
>>     >> +++ b/meta/conf/bitbake.conf
>>     >> @@ -405,6 +405,7 @@ SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}"
>>     >>
>>     >> OLDEST_KERNEL = "2.6.32"
>>     >> OLDEST_KERNEL_aarch64 = "3.14"
>>     >> +OLDEST_KERNEL_nios2 = “3.19"
>>     >
>>     > if you don’t need it on krogoth, then I would suggest to hold this
>>     patch for master since
>>     > I have a series which upgrades glibc to 2.24 and 2.24 needs 3.x
>>     minimum
>>     >
>>     > see
>>     >
>>     >
>>     https://github.com/kraj/openembedded-core/commit/1be5ebb2e1e2d39936d13ce158db29954bc6dabe
>>
>>     I don't mind either way. I need 3.19, not 3.2 though, so your patch does
>>     not help me if I understand it correctly.
>>
>>     >> STAGING_KERNEL_DIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-source"
>>     >> STAGING_KERNEL_BUILDDIR =
>>     "${TMPDIR}/work-shared/${MACHINE}/kernel-build-artifacts"
>>     >>
>>     >> --
>>     >> 2.7.0
>>     >>
>>     >> --
>>     >> _______________________________________________
>>     >> Openembedded-core mailing list
>>     >> Openembedded-core@lists.openembedded.org
>>     <mailto:Openembedded-core@lists.openembedded.org>
>>     >> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>     >
>>
>>
>>     --
>>     Best regards,
>>     Marek Vasut
>>
>
>
> --
> Best regards,
> Marek Vasut


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

* Re: [PATCH] bitbake: Oldest kernel for nios2 is 3.19
  2016-05-08 18:13         ` Khem Raj
@ 2016-05-08 18:14           ` Marek Vasut
  0 siblings, 0 replies; 8+ messages in thread
From: Marek Vasut @ 2016-05-08 18:14 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

On 05/08/2016 08:13 PM, Khem Raj wrote:
> I will just fold it into my series.

OK, thanks :)

> On Sun, May 8, 2016 at 10:55 AM, Marek Vasut <marex@denx.de> wrote:
>> On 05/08/2016 07:31 PM, Khem Raj wrote:
>>> I was just trying to avoid patch conflict :)
>>
>> If you want me to repost updated patch, just let me know, but the fix
>> will be really trivial in this case ;-)
>>
>>> On Sun, May 8, 2016 at 10:19 AM Marek Vasut <marex@denx.de
>>> <mailto:marex@denx.de>> wrote:
>>>
>>>     On 05/08/2016 07:06 PM, Khem Raj wrote:
>>>     >
>>>     >> On May 8, 2016, at 6:00 AM, Marek Vasut <marex@denx.de
>>>     <mailto:marex@denx.de>> wrote:
>>>     >>
>>>     >> The oldest kernel version for nios2 is 3.19.0, set it so, otherwise
>>>     >> qemu-nios2 -r ${OLDEST_KERNEL} fails with "FATAL: kernel too old"
>>>     >> message from glibc.
>>>     >>
>>>     >> Signed-off-by: Marek Vasut <marex@denx.de <mailto:marex@denx.de>>
>>>     >> Cc: Richard Purdie <richard.purdie@linuxfoundation.org
>>>     <mailto:richard.purdie@linuxfoundation.org>>
>>>     >> ---
>>>     >> meta/conf/bitbake.conf | 1 +
>>>     >> 1 file changed, 1 insertion(+)
>>>     >>
>>>     >> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
>>>     >> index 1c4175f..2f5db22 100644
>>>     >> --- a/meta/conf/bitbake.conf
>>>     >> +++ b/meta/conf/bitbake.conf
>>>     >> @@ -405,6 +405,7 @@ SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}"
>>>     >>
>>>     >> OLDEST_KERNEL = "2.6.32"
>>>     >> OLDEST_KERNEL_aarch64 = "3.14"
>>>     >> +OLDEST_KERNEL_nios2 = “3.19"
>>>     >
>>>     > if you don’t need it on krogoth, then I would suggest to hold this
>>>     patch for master since
>>>     > I have a series which upgrades glibc to 2.24 and 2.24 needs 3.x
>>>     minimum
>>>     >
>>>     > see
>>>     >
>>>     >
>>>     https://github.com/kraj/openembedded-core/commit/1be5ebb2e1e2d39936d13ce158db29954bc6dabe
>>>
>>>     I don't mind either way. I need 3.19, not 3.2 though, so your patch does
>>>     not help me if I understand it correctly.
>>>
>>>     >> STAGING_KERNEL_DIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-source"
>>>     >> STAGING_KERNEL_BUILDDIR =
>>>     "${TMPDIR}/work-shared/${MACHINE}/kernel-build-artifacts"
>>>     >>
>>>     >> --
>>>     >> 2.7.0
>>>     >>
>>>     >> --
>>>     >> _______________________________________________
>>>     >> Openembedded-core mailing list
>>>     >> Openembedded-core@lists.openembedded.org
>>>     <mailto:Openembedded-core@lists.openembedded.org>
>>>     >> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>>     >
>>>
>>>
>>>     --
>>>     Best regards,
>>>     Marek Vasut
>>>
>>
>>
>> --
>> Best regards,
>> Marek Vasut


-- 
Best regards,
Marek Vasut


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

* Re: [PATCH] bitbake: Oldest kernel for nios2 is 3.19
  2016-05-08 17:06 ` Khem Raj
  2016-05-08 17:19   ` Marek Vasut
@ 2016-05-10 10:21   ` Ruslan Bilovol
  1 sibling, 0 replies; 8+ messages in thread
From: Ruslan Bilovol @ 2016-05-10 10:21 UTC (permalink / raw)
  To: Khem Raj; +Cc: Marek Vasut, openembedded-core

[-- Attachment #1: Type: text/plain, Size: 1884 bytes --]

On 05/08/2016 08:06 PM, Khem Raj wrote:
>> On May 8, 2016, at 6:00 AM, Marek Vasut <marex@denx.de> wrote:
>>
>> The oldest kernel version for nios2 is 3.19.0, set it so, otherwise
>> qemu-nios2 -r ${OLDEST_KERNEL} fails with "FATAL: kernel too old"
>> message from glibc.
>>
>> Signed-off-by: Marek Vasut <marex@denx.de>
>> Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
>> ---
>> meta/conf/bitbake.conf | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
>> index 1c4175f..2f5db22 100644
>> --- a/meta/conf/bitbake.conf
>> +++ b/meta/conf/bitbake.conf
>> @@ -405,6 +405,7 @@ SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}"
>>
>> OLDEST_KERNEL = "2.6.32"
>> OLDEST_KERNEL_aarch64 = "3.14"
>> +OLDEST_KERNEL_nios2 = “3.19"
> if you don’t need it on krogoth, then I would suggest to hold this patch for master since
> I have a series which upgrades glibc to 2.24 and 2.24 needs 3.x minimum
>
> see
>
> https://github.com/kraj/openembedded-core/commit/1be5ebb2e1e2d39936d13ce158db29954bc6dabe

Could you please keep 2.6.32 for i386/x86_64? Glibc commit
http://repo.or.cz/glibc.git/commit/5b4ecd3f95695ef593e4474b4ab5a117291ba5fc
says that Linux v3.2 is required except on x86 / x86_64.
Currently we build OE and use SDK on x86_64 hosts and some of them
run Linux based on kernel 2.6.32 so we would like to still have ability
to use OE/SDK on such machines

Thanks,
Ruslan

>
>> STAGING_KERNEL_DIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-source"
>> STAGING_KERNEL_BUILDDIR = "${TMPDIR}/work-shared/${MACHINE}/kernel-build-artifacts"
>>
>> --
>> 2.7.0
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
>


[-- Attachment #2: Type: text/html, Size: 3383 bytes --]

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

end of thread, other threads:[~2016-05-10 10:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-08 13:00 [PATCH] bitbake: Oldest kernel for nios2 is 3.19 Marek Vasut
2016-05-08 17:06 ` Khem Raj
2016-05-08 17:19   ` Marek Vasut
2016-05-08 17:31     ` Khem Raj
2016-05-08 17:55       ` Marek Vasut
2016-05-08 18:13         ` Khem Raj
2016-05-08 18:14           ` Marek Vasut
2016-05-10 10:21   ` Ruslan Bilovol

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox