diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-03-13 23:51:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-14 13:17:41 +0000 |
commit | 089767f71e59d9031f51ee5c2b5a133a1ff53ae6 (patch) | |
tree | dc0af7059d7120c91ab69c3e44f5f3ae14be4d11 /meta/recipes-kernel | |
parent | d1646743bcaf848691ba0c53326e31996d0be359 (diff) | |
download | poky-089767f71e59d9031f51ee5c2b5a133a1ff53ae6.tar.gz |
linux-yocto-tiny: add dependency on xz-native
The kernel configuration requires lzma to compress the kernel image
(CONFIG_KERNEL_LZMA=y), so add a dependency on xz-native which provides
it.
Fixes [YOCTO #1728].
(From OE-Core rev: e1f656492475fb65d1203afe0afeeec7e279a317)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb index 5cad513a0f..a3a61673f2 100644 --- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.0.bb | |||
@@ -1,6 +1,9 @@ | |||
1 | inherit kernel | 1 | inherit kernel |
2 | require recipes-kernel/linux/linux-yocto.inc | 2 | require recipes-kernel/linux/linux-yocto.inc |
3 | 3 | ||
4 | # We need lzma (as CONFIG_KERNEL_LZMA=y) | ||
5 | DEPENDS += "xz-native" | ||
6 | |||
4 | #KMACHINE = "yocto/standard/tiny/base" | 7 | #KMACHINE = "yocto/standard/tiny/base" |
5 | KMACHINE = "yocto/standard/base" | 8 | KMACHINE = "yocto/standard/base" |
6 | KBRANCH = "${KMACHINE}" | 9 | KBRANCH = "${KMACHINE}" |
@@ -10,7 +13,7 @@ LINUX_VERSION ?= "3.0.23" | |||
10 | SRCREV_machine ?= "8fd24b3570ab995848e4123ef13bac64e2c924be" | 13 | SRCREV_machine ?= "8fd24b3570ab995848e4123ef13bac64e2c924be" |
11 | SRCREV_meta ?= "e559129b4a6f39f68b75141096b2d516cf7a7f35" | 14 | SRCREV_meta ?= "e559129b4a6f39f68b75141096b2d516cf7a7f35" |
12 | 15 | ||
13 | PR = "r2" | 16 | PR = "r3" |
14 | PV = "${LINUX_VERSION}+git${SRCPV}" | 17 | PV = "${LINUX_VERSION}+git${SRCPV}" |
15 | 18 | ||
16 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.0;protocol=git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta \ | 19 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.0;protocol=git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta \ |