All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
@ 2011-07-07 23:23 Jessica Zhang
  2011-07-07 23:23 ` [PATCH 1/1] " Jessica Zhang
  2011-07-08 16:31 ` [PATCH 0/1] " Richard Purdie
  0 siblings, 2 replies; 7+ messages in thread
From: Jessica Zhang @ 2011-07-07 23:23 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit c412674cf818e77e35857fb93353e392e7ac9e53:
  Khem Raj (1):
        package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0"

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib jzhang/1195
  http://git.yoctoproject.org/cgit.cgi//log/?h=jzhang/1195

Khem Raj (1):
  [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr

 meta/site/mips-common |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)




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

* [PATCH 1/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
  2011-07-07 23:23 [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr Jessica Zhang
@ 2011-07-07 23:23 ` Jessica Zhang
  2011-07-08 16:31 ` [PATCH 0/1] " Richard Purdie
  1 sibling, 0 replies; 7+ messages in thread
From: Jessica Zhang @ 2011-07-07 23:23 UTC (permalink / raw)
  To: openembedded-core

From: Khem Raj <raj.khem@gmail.com>

Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>
---
 meta/site/mips-common |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/meta/site/mips-common b/meta/site/mips-common
index 6408baa..bbfc779 100644
--- a/meta/site/mips-common
+++ b/meta/site/mips-common
@@ -1,6 +1,9 @@
 ac_cv_func_realloc_0_nonnull=${ac_cv_func_realloc_0_nonnull=yes}
 ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes}
 
+# cvs
+cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes}
+
 # screen
 screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no}
 screen_cv_sys_memcpy_overlap=${screen_cv_sys_memcpy_overlap=no}
-- 
1.7.0.4




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

* Re: [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
  2011-07-07 23:23 [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr Jessica Zhang
  2011-07-07 23:23 ` [PATCH 1/1] " Jessica Zhang
@ 2011-07-08 16:31 ` Richard Purdie
  2011-07-08 18:37   ` Tom Rini
  1 sibling, 1 reply; 7+ messages in thread
From: Richard Purdie @ 2011-07-08 16:31 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Thu, 2011-07-07 at 16:23 -0700, Jessica Zhang wrote:
> The following changes since commit c412674cf818e77e35857fb93353e392e7ac9e53:
>   Khem Raj (1):
>         package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0"
> 
> are available in the git repository at:
> 
>   git://git.yoctoproject.org/poky-contrib jzhang/1195
>   http://git.yoctoproject.org/cgit.cgi//log/?h=jzhang/1195
> 
> Khem Raj (1):
>   [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr

Merged to master, thanks.

Richard




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

* Re: [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
  2011-07-08 16:31 ` [PATCH 0/1] " Richard Purdie
@ 2011-07-08 18:37   ` Tom Rini
  2011-07-08 19:07     ` Zhang, Jessica
  0 siblings, 1 reply; 7+ messages in thread
From: Tom Rini @ 2011-07-08 18:37 UTC (permalink / raw)
  To: openembedded-core

On 07/08/2011 09:31 AM, Richard Purdie wrote:
> On Thu, 2011-07-07 at 16:23 -0700, Jessica Zhang wrote:
>> The following changes since commit c412674cf818e77e35857fb93353e392e7ac9e53:
>>   Khem Raj (1):
>>         package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0"
>>
>> are available in the git repository at:
>>
>>   git://git.yoctoproject.org/poky-contrib jzhang/1195
>>   http://git.yoctoproject.org/cgit.cgi//log/?h=jzhang/1195
>>
>> Khem Raj (1):
>>   [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
> 
> Merged to master, thanks.

Late again and my fault this time but why is this in site/mips-common
and not site/linux-common or glibc-common?

-- 
Tom Rini
Mentor Graphics Corporation



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

* Re: [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
  2011-07-08 18:37   ` Tom Rini
@ 2011-07-08 19:07     ` Zhang, Jessica
  2011-07-08 20:49       ` Koen Kooi
  0 siblings, 1 reply; 7+ messages in thread
From: Zhang, Jessica @ 2011-07-08 19:07 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

We only have arm-common, common, ix86-common, mips-common, powerpc-common, sh-common under site, no Linux-common or glibc-common, and it's defined in all the arches-common files except mips-common.

Thanks,
Jessica

-----Original Message-----
From: openembedded-core-bounces@lists.openembedded.org [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of Tom Rini
Sent: Friday, July 08, 2011 11:37 AM
To: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core] [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr

On 07/08/2011 09:31 AM, Richard Purdie wrote:
> On Thu, 2011-07-07 at 16:23 -0700, Jessica Zhang wrote:
>> The following changes since commit c412674cf818e77e35857fb93353e392e7ac9e53:
>>   Khem Raj (1):
>>         package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0"
>>
>> are available in the git repository at:
>>
>>   git://git.yoctoproject.org/poky-contrib jzhang/1195
>>   http://git.yoctoproject.org/cgit.cgi//log/?h=jzhang/1195
>>
>> Khem Raj (1):
>>   [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
>
> Merged to master, thanks.

Late again and my fault this time but why is this in site/mips-common
and not site/linux-common or glibc-common?

--
Tom Rini
Mentor Graphics Corporation

_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core



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

* Re: [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
  2011-07-08 19:07     ` Zhang, Jessica
@ 2011-07-08 20:49       ` Koen Kooi
  2011-07-08 21:55         ` Tom Rini
  0 siblings, 1 reply; 7+ messages in thread
From: Koen Kooi @ 2011-07-08 20:49 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

I have a crude merged version of siteinfo.bbclass in meta-oe, any volunteers to have à look at the differences?

Op 8 jul. 2011 om 21:07 heeft "Zhang, Jessica" <jessica.zhang@intel.com> het volgende geschreven:

> We only have arm-common, common, ix86-common, mips-common, powerpc-common, sh-common under site, no Linux-common or glibc-common, and it's defined in all the arches-common files except mips-common.
> 
> Thanks,
> Jessica
> 
> -----Original Message-----
> From: openembedded-core-bounces@lists.openembedded.org [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of Tom Rini
> Sent: Friday, July 08, 2011 11:37 AM
> To: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core] [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
> 
> On 07/08/2011 09:31 AM, Richard Purdie wrote:
>> On Thu, 2011-07-07 at 16:23 -0700, Jessica Zhang wrote:
>>> The following changes since commit c412674cf818e77e35857fb93353e392e7ac9e53:
>>>  Khem Raj (1):
>>>        package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0"
>>> 
>>> are available in the git repository at:
>>> 
>>>  git://git.yoctoproject.org/poky-contrib jzhang/1195
>>>  http://git.yoctoproject.org/cgit.cgi//log/?h=jzhang/1195
>>> 
>>> Khem Raj (1):
>>>  [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
>> 
>> Merged to master, thanks.
> 
> Late again and my fault this time but why is this in site/mips-common
> and not site/linux-common or glibc-common?
> 
> --
> Tom Rini
> Mentor Graphics Corporation
> 
> _______________________________________________
> 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] 7+ messages in thread

* Re: [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
  2011-07-08 20:49       ` Koen Kooi
@ 2011-07-08 21:55         ` Tom Rini
  0 siblings, 0 replies; 7+ messages in thread
From: Tom Rini @ 2011-07-08 21:55 UTC (permalink / raw)
  To: openembedded-core

On 07/08/2011 01:49 PM, Koen Kooi wrote:
> I have a crude merged version of siteinfo.bbclass in meta-oe, any volunteers to have à look at the differences?

Ug, I didn't know oe-core was missing all of that.  Shoot it over to me,
I'll take a look Monday.

> 
> Op 8 jul. 2011 om 21:07 heeft "Zhang, Jessica" <jessica.zhang@intel.com> het volgende geschreven:
> 
>> We only have arm-common, common, ix86-common, mips-common, powerpc-common, sh-common under site, no Linux-common or glibc-common, and it's defined in all the arches-common files except mips-common.
>>
>> Thanks,
>> Jessica
>>
>> -----Original Message-----
>> From: openembedded-core-bounces@lists.openembedded.org [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of Tom Rini
>> Sent: Friday, July 08, 2011 11:37 AM
>> To: openembedded-core@lists.openembedded.org
>> Subject: Re: [OE-core] [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
>>
>> On 07/08/2011 09:31 AM, Richard Purdie wrote:
>>> On Thu, 2011-07-07 at 16:23 -0700, Jessica Zhang wrote:
>>>> The following changes since commit c412674cf818e77e35857fb93353e392e7ac9e53:
>>>>  Khem Raj (1):
>>>>        package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0"
>>>>
>>>> are available in the git repository at:
>>>>
>>>>  git://git.yoctoproject.org/poky-contrib jzhang/1195
>>>>  http://git.yoctoproject.org/cgit.cgi//log/?h=jzhang/1195
>>>>
>>>> Khem Raj (1):
>>>>  [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr
>>>
>>> Merged to master, thanks.
>>
>> Late again and my fault this time but why is this in site/mips-common
>> and not site/linux-common or glibc-common?
>>
>> --
>> Tom Rini
>> Mentor Graphics Corporation
>>
>> _______________________________________________
>> 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


-- 
Tom Rini
Mentor Graphics Corporation



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

end of thread, other threads:[~2011-07-08 21:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-07 23:23 [PATCH 0/1] [bug 1195] site/mips-common: Cache cvs_cv_func_printf_ptr Jessica Zhang
2011-07-07 23:23 ` [PATCH 1/1] " Jessica Zhang
2011-07-08 16:31 ` [PATCH 0/1] " Richard Purdie
2011-07-08 18:37   ` Tom Rini
2011-07-08 19:07     ` Zhang, Jessica
2011-07-08 20:49       ` Koen Kooi
2011-07-08 21:55         ` Tom Rini

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.