From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail1.windriver.com ([147.11.146.13]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1ULFLP-0004BC-68 for openembedded-core@lists.openembedded.org; Thu, 28 Mar 2013 17:06:37 +0100 Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail1.windriver.com (8.14.5/8.14.3) with ESMTP id r2SFn1xg020727 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL); Thu, 28 Mar 2013 08:49:01 -0700 (PDT) Received: from [128.224.146.67] (128.224.146.67) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server id 14.2.342.3; Thu, 28 Mar 2013 08:49:00 -0700 Message-ID: <51546669.1080700@windriver.com> Date: Thu, 28 Mar 2013 11:48:57 -0400 From: Bruce Ashfield User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130308 Thunderbird/17.0.4 MIME-Version: 1.0 To: Tom Zanussi References: <80f242ef3516ce540a614dcb8ba3f6880cff19f2.1364308617.git.bruce.ashfield@windriver.com> <1364485215.30283.62.camel@empanada> In-Reply-To: <1364485215.30283.62.camel@empanada> Cc: dvhart@linux.intel.com, openembedded-core@lists.openembedded.org Subject: Re: [PATCH 3/7] linux-yocto/3.8: introduce v3.8.4-rt1 X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Mar 2013 16:06:48 -0000 Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit On 13-03-28 11:40 AM, Tom Zanussi wrote: > On Tue, 2013-03-26 at 07:46 -0700, Bruce Ashfield wrote: >> The -rt series has been updated for the 3.8 kernel. Updating the >> SRCREVs to reflet its import into the tree. >> > > Hi Bruce, > > I'm sure you already have -rt2 queued up, but just wanted to mention > that I'm getting this with -rt1: Yah. Queued here. I'll make sure to push it as soon as possible. Thanks for the report. If you've picked a patch, that fixes just this error in your build .. I can always push just the single patch to keep things moving. Bruce > > kernel/built-in.o: In function `register_for_each_vma': > linux/kernel/events/uprobes.c:772: undefined reference to > `percpu_down_write' > > which should be fixed by -rt2: > > http://www.spinics.net/lists/linux-rt-users/msg09617.html > > [- per-cpu rwsem fixed for RT (required only by uprobes so far)] > > Tom > >> Signed-off-by: Bruce Ashfield >> --- >> meta/recipes-kernel/linux/linux-yocto-rt_3.8.bb | 29 +++++++++++++++++++++++ >> 1 file changed, 29 insertions(+) >> create mode 100644 meta/recipes-kernel/linux/linux-yocto-rt_3.8.bb >> >> diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.8.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.8.bb >> new file mode 100644 >> index 0000000..97178c7 >> --- /dev/null >> +++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.8.bb >> @@ -0,0 +1,29 @@ >> +require recipes-kernel/linux/linux-yocto.inc >> + >> +KBRANCH = "standard/preempt-rt/base" >> +KBRANCH_qemuppc = "standard/preempt-rt/qemuppc" >> + >> +LINUX_VERSION ?= "3.8.4" >> +LINUX_KERNEL_TYPE = "preempt-rt" >> + >> +KMETA = "meta" >> + >> +SRCREV_machine ?= "e9b9f72029522ef142ab181e9f7f3ae71535181a" >> +SRCREV_machine_qemuppc ?= "7443096f0bdc6522053decd10430fc96a0ef9b94" >> +SRCREV_meta ?= "2a6d36e75ca0a121570a389d7bab76ec240cbfda" >> + >> +PR = "${INC_PR}.0" >> +PV = "${LINUX_VERSION}+git${SRCPV}" >> + >> +SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.8.git;protocol=git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta" >> + >> +# Omit broken machines from COMPATIBLE_MACHINE >> +# qemuppc hangs at boot >> +# qemumips panics at boot >> +COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)" >> + >> +# Functionality flags >> +KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc" >> +KERNEL_FEATURES_append_qemux86=" ${KERNEL_EXTRA_FEATURES} cfg/sound.scc cfg/paravirt_kvm.scc" >> +KERNEL_FEATURES_append_qemux86-64=" ${KERNEL_EXTRA_FEATURES} cfg/sound.scc" >> +KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}" > >