All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] task-core-tools-testapps.bb: kexec-tools does not work on e5500-64b parts
@ 2012-07-13 20:06 Matthew McClintock
  2012-07-13 20:43 ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: Matthew McClintock @ 2012-07-13 20:06 UTC (permalink / raw)
  To: openembedded-core

This prevents kexec from building for this part since it does not work

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 meta/recipes-core/tasks/task-core-tools-testapps.bb |    1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-core/tasks/task-core-tools-testapps.bb b/meta/recipes-core/tasks/task-core-tools-testapps.bb
index b5847f8..bdd0d05 100644
--- a/meta/recipes-core/tasks/task-core-tools-testapps.bb
+++ b/meta/recipes-core/tasks/task-core-tools-testapps.bb
@@ -22,6 +22,7 @@ KEXECTOOLS ?= "kexec"
 KEXECTOOLS_mips ?= ""
 KEXECTOOLS_mipsel ?= ""
 KEXECTOOLS_powerpc ?= ""
+KEXECTOOLS_e5500-64b ?= ""
 
 RDEPENDS_${PN} = "\
     blktool \
-- 
1.7.10





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

* Re: [PATCH] task-core-tools-testapps.bb: kexec-tools does not work on e5500-64b parts
  2012-07-13 20:06 [PATCH] task-core-tools-testapps.bb: kexec-tools does not work on e5500-64b parts Matthew McClintock
@ 2012-07-13 20:43 ` Khem Raj
  2012-07-13 20:53   ` McClintock Matthew-B29882
  0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2012-07-13 20:43 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Fri, Jul 13, 2012 at 1:06 PM, Matthew McClintock <msm@freescale.com> wrote:
> This prevents kexec from building for this part since it does not work
>
> Signed-off-by: Matthew McClintock <msm@freescale.com>
> ---
>  meta/recipes-core/tasks/task-core-tools-testapps.bb |    1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/meta/recipes-core/tasks/task-core-tools-testapps.bb b/meta/recipes-core/tasks/task-core-tools-testapps.bb
> index b5847f8..bdd0d05 100644
> --- a/meta/recipes-core/tasks/task-core-tools-testapps.bb
> +++ b/meta/recipes-core/tasks/task-core-tools-testapps.bb
> @@ -22,6 +22,7 @@ KEXECTOOLS ?= "kexec"
>  KEXECTOOLS_mips ?= ""
>  KEXECTOOLS_mipsel ?= ""
>  KEXECTOOLS_powerpc ?= ""
> +KEXECTOOLS_e5500-64b ?= ""

you should use arch override here this is not machine specific recipe probably

KEXECTOOLS_powerpc64 ?= ""

is better

>
>  RDEPENDS_${PN} = "\
>      blktool \
> --
> 1.7.10
>
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core



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

* Re: [PATCH] task-core-tools-testapps.bb: kexec-tools does not work on e5500-64b parts
  2012-07-13 20:43 ` Khem Raj
@ 2012-07-13 20:53   ` McClintock Matthew-B29882
  2012-07-13 23:23     ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: McClintock Matthew-B29882 @ 2012-07-13 20:53 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Fri, Jul 13, 2012 at 3:43 PM, Khem Raj <raj.khem@gmail.com> wrote:
> On Fri, Jul 13, 2012 at 1:06 PM, Matthew McClintock <msm@freescale.com> wrote:
>> This prevents kexec from building for this part since it does not work
>>
>> Signed-off-by: Matthew McClintock <msm@freescale.com>
>> ---
>>  meta/recipes-core/tasks/task-core-tools-testapps.bb |    1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/meta/recipes-core/tasks/task-core-tools-testapps.bb b/meta/recipes-core/tasks/task-core-tools-testapps.bb
>> index b5847f8..bdd0d05 100644
>> --- a/meta/recipes-core/tasks/task-core-tools-testapps.bb
>> +++ b/meta/recipes-core/tasks/task-core-tools-testapps.bb
>> @@ -22,6 +22,7 @@ KEXECTOOLS ?= "kexec"
>>  KEXECTOOLS_mips ?= ""
>>  KEXECTOOLS_mipsel ?= ""
>>  KEXECTOOLS_powerpc ?= ""
>> +KEXECTOOLS_e5500-64b ?= ""
>
> you should use arch override here this is not machine specific recipe probably
>
> KEXECTOOLS_powerpc64 ?= ""
>
> is better

I thought about that at first, but there are plenty of powerpc64
machines that do support kexec ;) It's really just the Freescale
variant.

-M

>
>>
>>  RDEPENDS_${PN} = "\
>>      blktool \
>> --
>> 1.7.10
>>
>>
>>
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core



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

* Re: [PATCH] task-core-tools-testapps.bb: kexec-tools does not work on e5500-64b parts
  2012-07-13 20:53   ` McClintock Matthew-B29882
@ 2012-07-13 23:23     ` Khem Raj
  2012-07-13 23:28       ` McClintock Matthew-B29882
  0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2012-07-13 23:23 UTC (permalink / raw)
  To: McClintock Matthew-B29882,
	Patches and discussions about the oe-core layer

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

On Friday, July 13, 2012, McClintock Matthew-B29882 <B29882@freescale.com>
wrote:
> On Fri, Jul 13, 2012 at 3:43 PM, Khem Raj <raj.khem@gmail.com> wrote:
>> On Fri, Jul 13, 2012 at 1:06 PM, Matthew McClintock <msm@freescale.com>
wrote:
>>> This prevents kexec from building for this part since it does not work
>>>
>>> Signed-off-by: Matthew McClintock <msm@freescale.com>
>>> ---
>>>  meta/recipes-core/tasks/task-core-tools-testapps.bb |    1 +
>>>  1 file changed, 1 insertion(+)
>>>
>>> diff --git a/meta/recipes-core/tasks/task-core-tools-testapps.bbb/meta/recipes-core/tasks/
task-core-tools-testapps.bb
>>> index b5847f8..bdd0d05 100644
>>> --- a/meta/recipes-core/tasks/task-core-tools-testapps.bb
>>> +++ b/meta/recipes-core/tasks/task-core-tools-testapps.bb
>>> @@ -22,6 +22,7 @@ KEXECTOOLS ?= "kexec"
>>>  KEXECTOOLS_mips ?= ""
>>>  KEXECTOOLS_mipsel ?= ""
>>>  KEXECTOOLS_powerpc ?= ""
>>> +KEXECTOOLS_e5500-64b ?= ""
>>
>> you should use arch override here this is not machine specific recipe
probably
>>
>> KEXECTOOLS_powerpc64 ?= ""
>>
>> is better
>
> I thought about that at first, but there are plenty of powerpc64
> machines that do support kexec ;) It's really just the Freescale
> variant.

OK I see I thought PowerPC 32 bit is ignored already so chances of 64 bit
working are even less but as you say it works on some of them so be it
>
> -M
>
>>
>>>
>>>  RDEPENDS_${PN} = "\
>>>      blktool \
>>> --
>>> 1.7.10
>>>
>>>
>>>
>>> _______________________________________________
>>> Openembedded-core mailing list
>>> Openembedded-core@lists.openembedded.org
>>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>>
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>

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

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

* Re: [PATCH] task-core-tools-testapps.bb: kexec-tools does not work on e5500-64b parts
  2012-07-13 23:23     ` Khem Raj
@ 2012-07-13 23:28       ` McClintock Matthew-B29882
  2012-07-13 23:36         ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: McClintock Matthew-B29882 @ 2012-07-13 23:28 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: McClintock Matthew-B29882

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


On Jul 13, 2012 6:24 PM, "Khem Raj" <raj.khem@gmail.com<mailto:raj.khem@gmail.com>> wrote:
>
>
>
> On Friday, July 13, 2012, McClintock Matthew-B29882 <B29882@freescale.com<mailto:B29882@freescale.com>> wrote:
> > On Fri, Jul 13, 2012 at 3:43 PM, Khem Raj <raj.khem@gmail.com<mailto:raj.khem@gmail.com>> wrote:
> >> On Fri, Jul 13, 2012 at 1:06 PM, Matthew McClintock <msm@freescale.com<mailto:msm@freescale.com>> wrote:
> >>> This prevents kexec from building for this part since it does not work
> >>>
> >>> Signed-off-by: Matthew McClintock <msm@freescale.com<mailto:msm@freescale.com>>
> >>> ---
> >>>  meta/recipes-core/tasks/task-core-tools-testapps.bb<http://task-core-tools-testapps.bb> |    1 +
> >>>  1 file changed, 1 insertion(+)
> >>>
> >>> diff --git a/meta/recipes-core/tasks/task-core-tools-testapps.bb<http://task-core-tools-testapps.bb> b/meta/recipes-core/tasks/task-core-tools-testapps.bb<http://task-core-tools-testapps.bb>
> >>> index b5847f8..bdd0d05 100644
> >>> --- a/meta/recipes-core/tasks/task-core-tools-testapps.bb<http://task-core-tools-testapps.bb>
> >>> +++ b/meta/recipes-core/tasks/task-core-tools-testapps.bb<http://task-core-tools-testapps.bb>
> >>> @@ -22,6 +22,7 @@ KEXECTOOLS ?= "kexec"
> >>>  KEXECTOOLS_mips ?= ""
> >>>  KEXECTOOLS_mipsel ?= ""
> >>>  KEXECTOOLS_powerpc ?= ""
> >>> +KEXECTOOLS_e5500-64b ?= ""
> >>
> >> you should use arch override here this is not machine specific recipe probably
> >>
> >> KEXECTOOLS_powerpc64 ?= ""
> >>
> >> is better
> >
> > I thought about that at first, but there are plenty of powerpc64
> > machines that do support kexec ;) It's really just the Freescale
> > variant.
>
> OK I see I thought PowerPC 32 bit is ignored already so chances of 64 bit working are even less but as you say it works on some of them so be it

Actually some freescale 32 bits parts work with kexec as I did some of that enablement. I just need to test it out and change the other line.

-M

>
> >
> > -M
> >
> >>
> >>>
> >>>  RDEPENDS_${PN} = "\
> >>>      blktool \
> >>> --
> >>> 1.7.10
> >>>
> >>>
> >>>
> >>> _______________________________________________
> >>> Openembedded-core mailing list
> >>> Openembedded-core@lists.openembedded.org<mailto:Openembedded-core@lists.openembedded.org>
> >>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
> >>
> >> _______________________________________________
> >> Openembedded-core mailing list
> >> Openembedded-core@lists.openembedded.org<mailto:Openembedded-core@lists.openembedded.org>
> >> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
> >
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org<mailto:Openembedded-core@lists.openembedded.org>
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
> >
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org<mailto:Openembedded-core@lists.openembedded.org>
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>

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

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

* Re: [PATCH] task-core-tools-testapps.bb: kexec-tools does not work on e5500-64b parts
  2012-07-13 23:28       ` McClintock Matthew-B29882
@ 2012-07-13 23:36         ` Khem Raj
  0 siblings, 0 replies; 6+ messages in thread
From: Khem Raj @ 2012-07-13 23:36 UTC (permalink / raw)
  To: McClintock Matthew-B29882,
	Patches and discussions about the oe-core layer

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

On Friday, July 13, 2012, McClintock Matthew-B29882 <B29882@freescale.com>
wrote:
>
> On Jul 13, 2012 6:24 PM, "Khem Raj" <raj.khem@gmail.com> wrote:
>>
>>
>>
>> On Friday, July 13, 2012, McClintock Matthew-B29882 <B29882@freescale.com>
wrote:
>> > On Fri, Jul 13, 2012 at 3:43 PM, Khem Raj <raj.khem@gmail.com> wrote:
>> >> On Fri, Jul 13, 2012 at 1:06 PM, Matthew McClintock <msm@freescale.com>
wrote:
>> >>> This prevents kexec from building for this part since it does not
work
>> >>>
>> >>> Signed-off-by: Matthew McClintock <msm@freescale.com>
>> >>> ---
>> >>>  meta/recipes-core/tasks/task-core-tools-testapps.bb |    1 +
>> >>>  1 file changed, 1 insertion(+)
>> >>>
>> >>> diff --git a/meta/recipes-core/tasks/task-core-tools-testapps.bbb/meta/recipes-core/tasks/
task-core-tools-testapps.bb
>> >>> index b5847f8..bdd0d05 100644
>> >>> --- a/meta/recipes-core/tasks/task-core-tools-testapps.bb
>> >>> +++ b/meta/recipes-core/tasks/task-core-tools-testapps.bb
>> >>> @@ -22,6 +22,7 @@ KEXECTOOLS ?= "kexec"
>> >>>  KEXECTOOLS_mips ?= ""
>> >>>  KEXECTOOLS_mipsel ?= ""
>> >>>  KEXECTOOLS_powerpc ?= ""
>> >>> +KEXECTOOLS_e5500-64b ?= ""
>> >>
>> >> you should use arch override here this is not machine specific recipe
probably
>> >>
>> >> KEXECTOOLS_powerpc64 ?= ""
>> >>
>> >> is better
>> >
>> > I thought about that at first, but there are plenty of powerpc64
>> > machines that do support kexec ;) It's really just the Freescale
>> > variant.
>>
>> OK I see I thought PowerPC 32 bit is ignored already so chances of 64
bit working are even less but as you say it works on some of them so be it
>
> Actually some freescale 32 bits parts work with kexec as I did some of
that enablement. I just need to test it out and change the other line.

So will ppc64 get fixed some time soon ?

>
> -M
>
>>
>> >
>> > -M
>> >
>> >>
>> >>>
>> >>>  RDEPENDS_${PN} = "\
>> >>>      blktool \
>> >>> --
>> >>> 1.7.10
>> >>>
>> >>>
>> >>>
>> >>> _______________________________________________
>> >>> Openembedded-core mailing list
>> >>> Openembedded-core@lists.openembedded.org
>> >>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>> >>
>> >> _______________________________________________
>> >> Openembedded-core mailing list
>> >> Openembedded-core@lists.openembedded.org
>> >> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>> >
>> > _______________________________________________
>> > Openembedded-core mailing list
>> > Openembedded-core@lists.openembedded.org
>> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>> >
>>
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>>
>

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

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

end of thread, other threads:[~2012-07-13 23:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-13 20:06 [PATCH] task-core-tools-testapps.bb: kexec-tools does not work on e5500-64b parts Matthew McClintock
2012-07-13 20:43 ` Khem Raj
2012-07-13 20:53   ` McClintock Matthew-B29882
2012-07-13 23:23     ` Khem Raj
2012-07-13 23:28       ` McClintock Matthew-B29882
2012-07-13 23:36         ` Khem Raj

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.