diff options
author | Filip Zyzniewski <filip.zyzniewski@gmail.com> | 2010-08-29 17:13:20 +0200 |
---|---|---|
committer | Kristoffer Ericson <kristoffer.ericson@jlime.(none)> | 2010-09-08 14:33:32 +0200 |
commit | d89f47cc3f8fcb8ea0576f6dfed22b6219d4850a (patch) | |
tree | a0e2e8340deb7aad48492202187c5fed4cc3ca37 /recipes/linux/linux-jlime-jornada7xx_2.6.34+git.bb | |
parent | 20f28f911712260d6fe86c1e421807fa879310c5 (diff) |
linux-jlime-jornada7xx: moved from 2.6.32 to 2.6.34.
Diffstat (limited to 'recipes/linux/linux-jlime-jornada7xx_2.6.34+git.bb')
-rw-r--r-- | recipes/linux/linux-jlime-jornada7xx_2.6.34+git.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes/linux/linux-jlime-jornada7xx_2.6.34+git.bb b/recipes/linux/linux-jlime-jornada7xx_2.6.34+git.bb new file mode 100644 index 0000000000..006b6091d1 --- /dev/null +++ b/recipes/linux/linux-jlime-jornada7xx_2.6.34+git.bb @@ -0,0 +1,35 @@ +SECTION = "kernel" +DESCRIPTION = "JLime Linux kernel for Arm based Jornada 7xx" +LICENSE = "GPLv2" +PR = "r0" + +COMPATIBLE_HOST = "arm.*-linux" +COMPATIBLE_MACHINE = "jornada7xx" + +SRC_URI = "file://defconf_jlime" + +S = "${WORKDIR}/linux-hpc" + +inherit kernel + +ARCH = "arm" + +FILES_kernel-image = "/boot/${KERNEL_IMAGETYPE}*" + +do_fetch () { + cd ${WORKDIR} + [ -d linux-hpc ] && { + cd linux-hpc + git pull + } || { + git clone git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git + cd linux-hpc + # written individual do_fetch function because I don't know how to do this in SRC_URI: + git checkout --track -b v2.6.34-hpc origin/v2.6.34-hpc + git checkout v2.6.34-hpc + } +} + +do_configure_prepend() { + install -m 0644 ${WORKDIR}/defconf_jlime ${S}/.config +} |