From 6e9e19230ee731856639f71c5adfb01a92f620d8 Mon Sep 17 00:00:00 2001 From: Darren Hart Date: Tue, 19 Jul 2011 15:31:45 -0700 Subject: meta-rt: refresh linux-yocto-rt recipe Rename the recipe to match the linux-yocto recipe renames using the kernel version in the PV portion of the filename. Add the SRCREVs to the recipe as was done with the core linux-yocto recipes. Add qemux86 as it is also present in the linux-yocto-2.6.34.git repository. Signed-off-by: Darren Hart --- meta-rt/conf/layer.conf | 6 --- meta-rt/recipes-kernel/linux-yocto-rt_2.6.34.bb | 44 ++++++++++++++++++++++ meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb | 38 ------------------- 3 files changed, 44 insertions(+), 44 deletions(-) create mode 100644 meta-rt/recipes-kernel/linux-yocto-rt_2.6.34.bb delete mode 100644 meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb diff --git a/meta-rt/conf/layer.conf b/meta-rt/conf/layer.conf index 94ebc02520..f105405784 100644 --- a/meta-rt/conf/layer.conf +++ b/meta-rt/conf/layer.conf @@ -15,9 +15,3 @@ BBFILE_PRIORITY_rt = "8" # specified kernel providers and leave it up to the kernel recipe to # determine COMPATIBLE_MACHINE. PREFERRED_PROVIDER_virtual/kernel = "linux-yocto-rt" - -# preempt_rt SRCREVs, one for meta, one per machine -SRCREV_meta_pn-linux-yocto-rt ?= "b0615811ce38836d1ade230e3bdb1efaaa68471f" -SRCREV_machine_pn-linux-yocto-rt_qemux86-64 ?= "f49444f06875894389e640bcda6c3f6ceb1f0c3e" -SRCREV_machine_pn-linux-yocto-rt_atom-pc ?= "78dacaf8222c9492ba17f652989ef3466423bdc2" - diff --git a/meta-rt/recipes-kernel/linux-yocto-rt_2.6.34.bb b/meta-rt/recipes-kernel/linux-yocto-rt_2.6.34.bb new file mode 100644 index 0000000000..01a6761f7a --- /dev/null +++ b/meta-rt/recipes-kernel/linux-yocto-rt_2.6.34.bb @@ -0,0 +1,44 @@ +inherit kernel +require recipes-kernel/linux/linux-yocto.inc + +KMACHINE_qemux86 = "common_pc" +KMACHINE_qemux86-64 = "common_pc_64" +KMACHINE_atom-pc = "atom-pc" + +LINUX_VERSION ?= "2.6.34" +LINUX_KERNEL_TYPE = "preempt_rt" +LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE_EXTENSION}" + +KMETA = wrs_meta +KBRANCH = ${KMACHINE}-${LINUX_KERNEL_TYPE} + +SRCREV_machine_qemux86 = "439602eb6acd53d9beb8493710310214fc7bd749" +SRCREV_machine_qemux86-64 = "3c84c45ad3c3592f9c7ff4076de9bee417cd322e" +SRCREV_machine_atom-pc = "269d71029adcf4d1dbf8441f091d824478d8c87d" +SRCREV_meta = "e1f85a470934a0cf6abde5d95533e74501822c6b" + +PR = "r2" +PV = "${LINUX_VERSION}+git${SRCPV}" +SRCREV_FORMAT = "meta_machine" + +COMPATIBLE_MACHINE = "(qemux86|qemux86-64|atom-pc)" + +# this performs a fixup on the SRCREV for new/undefined BSPs +python __anonymous () { + import bb, re, string + + kerntype = string.replace(bb.data.expand("${LINUX_KERNEL_TYPE}", d), "_", "-") + bb.data.setVar("LINUX_KERNEL_TYPE_EXTENSION", kerntype, d) +} + +SRC_URI = "git://git.yoctoproject.org/linux-yocto-2.6.34.git;protocol=git;nocheckout=1;branch=${KBRANCH},wrs_meta;name=machine,meta" + +# Functionality flags +KERNEL_REVISION_CHECKING ?= "t" +KERNEL_FEATURES=features/netfilter + +# extra tasks +addtask kernel_link_vmlinux after do_compile before do_install +addtask validate_branches before do_patch after do_kernel_checkout + +require recipes-kernel/linux/linux-tools.inc diff --git a/meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb b/meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb deleted file mode 100644 index cba132176a..0000000000 --- a/meta-rt/recipes-kernel/linux-yocto-rt_stablegit.bb +++ /dev/null @@ -1,38 +0,0 @@ -inherit kernel -require recipes-kernel/linux/linux-yocto.inc - -KMACHINE_qemux86-64 = "common_pc_64" -KMACHINE_atom-pc = "atom-pc" - -LINUX_VERSION ?= "2.6.34" -LINUX_KERNEL_TYPE = "preempt_rt" -LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE_EXTENSION}" - -KMETA = wrs_meta -KBRANCH = ${KMACHINE}-${LINUX_KERNEL_TYPE} - -PR = "r1" -PV = "${LINUX_VERSION}+git${SRCPV}" -SRCREV_FORMAT = "meta_machine" - -COMPATIBLE_MACHINE = "(qemux86-64|atom-pc)" - -# this performs a fixup on the SRCREV for new/undefined BSPs -python __anonymous () { - import bb, re, string - - kerntype = string.replace(bb.data.expand("${LINUX_KERNEL_TYPE}", d), "_", "-") - bb.data.setVar("LINUX_KERNEL_TYPE_EXTENSION", kerntype, d) -} - -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" -KERNEL_FEATURES=features/netfilter - -# extra tasks -addtask kernel_link_vmlinux after do_compile before do_install -addtask validate_branches before do_patch after do_kernel_checkout - -require recipes-kernel/linux/linux-tools.inc -- cgit 1.2.3-korg