* [PATCH 0/2] linux-yocto-tiny 3.8
@ 2013-04-05 19:02 Darren Hart
2013-04-05 19:02 ` [PATCH 1/2] linux-yocto-tiny: Add 3.8.4 recipe Darren Hart
2013-04-05 19:02 ` [PATCH 2/2] poky-tiny: Prefer linux-yocto-tiny_3.8 Darren Hart
0 siblings, 2 replies; 3+ messages in thread
From: Darren Hart @ 2013-04-05 19:02 UTC (permalink / raw)
To: Poky
I have included both the linux-yocto-tiny_3.8 recipe patch and the meta-yocto
poky-tiny distro config to prefer it, just to keep the pull simple. The
linux-yocto-tiny_3.8 recipe was also sent to oe-core for review there.
The following changes since commit 5444db05034e5e693846ccb5543732e790b1d4c7:
ref-manual: Added preliminary migration raw text. (2013-04-04 14:13:46 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib dvhart/tiny
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=dvhart/tiny
Darren Hart (2):
linux-yocto-tiny: Add 3.8.4 recipe
poky-tiny: Prefer linux-yocto-tiny_3.8
meta-yocto/conf/distro/poky-tiny.conf | 2 +-
meta/recipes-kernel/linux/linux-yocto-tiny_3.8.bb | 26 +++++++++++++++++++++
2 files changed, 27 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-kernel/linux/linux-yocto-tiny_3.8.bb
--
1.7.5.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/2] linux-yocto-tiny: Add 3.8.4 recipe
2013-04-05 19:02 [PATCH 0/2] linux-yocto-tiny 3.8 Darren Hart
@ 2013-04-05 19:02 ` Darren Hart
2013-04-05 19:02 ` [PATCH 2/2] poky-tiny: Prefer linux-yocto-tiny_3.8 Darren Hart
1 sibling, 0 replies; 3+ messages in thread
From: Darren Hart @ 2013-04-05 19:02 UTC (permalink / raw)
To: Poky
Bring linux-yocto-tiny up to the latest linux-yocto 3.8.4 version.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
---
meta/recipes-kernel/linux/linux-yocto-tiny_3.8.bb | 26 +++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-kernel/linux/linux-yocto-tiny_3.8.bb
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.8.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.8.bb
new file mode 100644
index 0000000..07b620c
--- /dev/null
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.8.bb
@@ -0,0 +1,26 @@
+require recipes-kernel/linux/linux-yocto.inc
+
+# We need lzma (as CONFIG_KERNEL_LZMA=y)
+DEPENDS += "xz-native"
+
+KBRANCH_DEFAULT = "standard/tiny/base"
+KBRANCH = "${KBRANCH_DEFAULT}"
+LINUX_KERNEL_TYPE = "tiny"
+KCONFIG_MODE = "--allnoconfig"
+
+LINUX_VERSION ?= "3.8.4"
+
+KMETA = "meta"
+
+SRCREV_machine ?= "42ddf06111efe45f3c36012d5a04a1eeb9781f42"
+SRCREV_meta ?= "f86199dd4c142fae61517a993b3f7162bb6d4f94"
+
+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"
+
+COMPATIBLE_MACHINE = "(qemux86)"
+
+# Functionality flags
+KERNEL_FEATURES = ""
--
1.7.5.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] poky-tiny: Prefer linux-yocto-tiny_3.8
2013-04-05 19:02 [PATCH 0/2] linux-yocto-tiny 3.8 Darren Hart
2013-04-05 19:02 ` [PATCH 1/2] linux-yocto-tiny: Add 3.8.4 recipe Darren Hart
@ 2013-04-05 19:02 ` Darren Hart
1 sibling, 0 replies; 3+ messages in thread
From: Darren Hart @ 2013-04-05 19:02 UTC (permalink / raw)
To: Poky
Update the distro config to prefer the 3.8 version of the
linux-yocto-tiny recipe.
Build and boot tested on qemux86.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
---
meta-yocto/conf/distro/poky-tiny.conf | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
index 347280a..755667f 100644
--- a/meta-yocto/conf/distro/poky-tiny.conf
+++ b/meta-yocto/conf/distro/poky-tiny.conf
@@ -37,7 +37,7 @@ DISTRO = "poky-tiny"
# Distro config is evaluated after the machine config, so we have to explicitly
# set the kernel provider to override a machine config.
PREFERRED_PROVIDER_virtual/kernel = "linux-yocto-tiny"
-PREFERRED_VERSION_linux-yocto-tiny = "3.4%"
+PREFERRED_VERSION_linux-yocto-tiny = "3.8%"
# We can use packagegroup-core-boot, but in the future we may need a new packagegroup-core-tiny
#POKY_DEFAULT_EXTRA_RDEPENDS += "packagegroup-core-boot"
--
1.7.5.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-04-05 19:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-05 19:02 [PATCH 0/2] linux-yocto-tiny 3.8 Darren Hart
2013-04-05 19:02 ` [PATCH 1/2] linux-yocto-tiny: Add 3.8.4 recipe Darren Hart
2013-04-05 19:02 ` [PATCH 2/2] poky-tiny: Prefer linux-yocto-tiny_3.8 Darren Hart
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.