* [PATCH 0/1] kernel-rt: fix build issues
@ 2011-04-20 0:02 Darren Hart
2011-04-20 0:02 ` [PATCH 1/1] kernel-rt: use correct branch names and new git SRC_REV format Darren Hart
2011-04-20 1:18 ` [PATCH 0/1] kernel-rt: fix build issues Richard Purdie
0 siblings, 2 replies; 5+ messages in thread
From: Darren Hart @ 2011-04-20 0:02 UTC (permalink / raw)
To: poky; +Cc: Darren Hart
From: Darren Hart <dvhart@linux.intel.com>
The linux-yocto-rt recipe wasn't building in master or bernard. This brings the
recipe up to date with the linux-yocto* recipes and corrects the build failures.
This patch should be applied to both bernard and master.
Pull URL: git://git.pokylinux.org/poky-contrib.git
Branch: dvhart/bernard/rt
Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dvhart/bernard/rt
Thanks,
Darren Hart <dvhart@linux.intel.com>
---
Darren Hart (1):
kernel-rt: use correct branch names and new git SRC_REV format
meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb | 12 +++++-------
1 files changed, 5 insertions(+), 7 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] kernel-rt: use correct branch names and new git SRC_REV format
2011-04-20 0:02 [PATCH 0/1] kernel-rt: fix build issues Darren Hart
@ 2011-04-20 0:02 ` Darren Hart
2011-04-20 1:18 ` [PATCH 0/1] kernel-rt: fix build issues Richard Purdie
1 sibling, 0 replies; 5+ messages in thread
From: Darren Hart @ 2011-04-20 0:02 UTC (permalink / raw)
To: poky; +Cc: Darren Hart
From: Darren Hart <dvhart@linux.intel.com>
The RT kernel recipe was not updated to reflect the new git SRC_REV format nor
to take advantage of the recent updates made to the underlying infrastructure.
These fixes bring it up to date with the other linux-yocto* recipes and fix
various build issues people were seeing.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Cc: Bruce Ashfield <bruce.ashfield@windriver.com>
---
meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb | 12 +++++-------
1 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb b/meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb
index 547f8fe..cba1321 100644
--- a/meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb
+++ b/meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb
@@ -8,7 +8,10 @@ LINUX_VERSION ?= "2.6.34"
LINUX_KERNEL_TYPE = "preempt_rt"
LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE_EXTENSION}"
-PR = "r0"
+KMETA = wrs_meta
+KBRANCH = ${KMACHINE}-${LINUX_KERNEL_TYPE}
+
+PR = "r1"
PV = "${LINUX_VERSION}+git${SRCPV}"
SRCREV_FORMAT = "meta_machine"
@@ -18,16 +21,11 @@ COMPATIBLE_MACHINE = "(qemux86-64|atom-pc)"
python __anonymous () {
import bb, re, string
- rev = bb.data.getVar("SRCREV_machine", d, 1)
- if rev == "standard":
- bb.data.setVar("SRCREV_machine", "${SRCREV_meta}", d)
-
kerntype = string.replace(bb.data.expand("${LINUX_KERNEL_TYPE}", d), "_", "-")
bb.data.setVar("LINUX_KERNEL_TYPE_EXTENSION", kerntype, d)
}
-SRC_URI = "git://git.pokylinux.org/linux-2.6-windriver.git;protocol=git;fullclone=1;branch=${KBRANCH};name=machine \
- git://git.pokylinux.org/linux-2.6-windriver.git;protocol=git;noclone=1;branch=wrs_meta;name=meta"
+SRC_URI = "git://git.yoctoproject.org/linux-2.6-windriver.git;protocol=git;nocheckout=1;branch=${KBRANCH},wrs_meta;name=machine,meta"
# Functionality flags
KERNEL_REVISION_CHECKING ?= "t"
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 0/1] kernel-rt: fix build issues
2011-04-20 0:02 [PATCH 0/1] kernel-rt: fix build issues Darren Hart
2011-04-20 0:02 ` [PATCH 1/1] kernel-rt: use correct branch names and new git SRC_REV format Darren Hart
@ 2011-04-20 1:18 ` Richard Purdie
2011-04-27 23:09 ` Darren Hart
1 sibling, 1 reply; 5+ messages in thread
From: Richard Purdie @ 2011-04-20 1:18 UTC (permalink / raw)
To: Darren Hart; +Cc: poky
On Tue, 2011-04-19 at 17:02 -0700, Darren Hart wrote:
> From: Darren Hart <dvhart@linux.intel.com>
>
> The linux-yocto-rt recipe wasn't building in master or bernard. This brings the
> recipe up to date with the linux-yocto* recipes and corrects the build failures.
> This patch should be applied to both bernard and master.
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
> Branch: dvhart/bernard/rt
> Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dvhart/bernard/rt
>
> Thanks,
> Darren Hart <dvhart@linux.intel.com>
> ---
>
>
> Darren Hart (1):
> kernel-rt: use correct branch names and new git SRC_REV format
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 0/1] kernel-rt: fix build issues
2011-04-20 1:18 ` [PATCH 0/1] kernel-rt: fix build issues Richard Purdie
@ 2011-04-27 23:09 ` Darren Hart
2011-04-28 0:56 ` Saul Wold
0 siblings, 1 reply; 5+ messages in thread
From: Darren Hart @ 2011-04-27 23:09 UTC (permalink / raw)
To: Richard Purdie; +Cc: poky
On 04/19/2011 06:18 PM, Richard Purdie wrote:
> On Tue, 2011-04-19 at 17:02 -0700, Darren Hart wrote:
>> From: Darren Hart <dvhart@linux.intel.com>
>>
>> The linux-yocto-rt recipe wasn't building in master or bernard. This brings the
>> recipe up to date with the linux-yocto* recipes and corrects the build failures.
>> This patch should be applied to both bernard and master.
>>
>> Pull URL: git://git.pokylinux.org/poky-contrib.git
>> Branch: dvhart/bernard/rt
>> Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dvhart/bernard/rt
>>
>> Thanks,
>> Darren Hart <dvhart@linux.intel.com>
>> ---
>>
>>
>> Darren Hart (1):
>> kernel-rt: use correct branch names and new git SRC_REV format
>
> Merged to master, thanks.
Can we also merge to Bernard please? Without it, meta-rt will not build.
--
Darren
>
> Richard
>
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 0/1] kernel-rt: fix build issues
2011-04-27 23:09 ` Darren Hart
@ 2011-04-28 0:56 ` Saul Wold
0 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2011-04-28 0:56 UTC (permalink / raw)
To: Darren Hart; +Cc: poky
On 04/27/2011 04:09 PM, Darren Hart wrote:
>
>
> On 04/19/2011 06:18 PM, Richard Purdie wrote:
>> On Tue, 2011-04-19 at 17:02 -0700, Darren Hart wrote:
>>> From: Darren Hart<dvhart@linux.intel.com>
>>>
>>> The linux-yocto-rt recipe wasn't building in master or bernard. This brings the
>>> recipe up to date with the linux-yocto* recipes and corrects the build failures.
>>> This patch should be applied to both bernard and master.
>>>
>>> Pull URL: git://git.pokylinux.org/poky-contrib.git
>>> Branch: dvhart/bernard/rt
>>> Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dvhart/bernard/rt
>>>
>>> Thanks,
>>> Darren Hart<dvhart@linux.intel.com>
>>> ---
>>>
>>>
>>> Darren Hart (1):
>>> kernel-rt: use correct branch names and new git SRC_REV format
>>
>> Merged to master, thanks.
>
> Can we also merge to Bernard please? Without it, meta-rt will not build.
>
Staged into the stage/bernard area.
Sau!
> --
> Darren
>
>>
>> Richard
>>
>> _______________________________________________
>> poky mailing list
>> poky@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/poky
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-04-28 0:56 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-20 0:02 [PATCH 0/1] kernel-rt: fix build issues Darren Hart
2011-04-20 0:02 ` [PATCH 1/1] kernel-rt: use correct branch names and new git SRC_REV format Darren Hart
2011-04-20 1:18 ` [PATCH 0/1] kernel-rt: fix build issues Richard Purdie
2011-04-27 23:09 ` Darren Hart
2011-04-28 0:56 ` Saul Wold
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.