diff options
author | Stefan Agner <stefan.agner@toradex.com> | 2014-03-17 16:09:01 +0100 |
---|---|---|
committer | Stefan Agner <stefan.agner@toradex.com> | 2014-03-17 16:09:01 +0100 |
commit | f888b9a7078a74acf68c809606155bf80ba2840c (patch) | |
tree | 20e2e7350b87ba64121f02d86d3cd3034a250983 /recipes-kernel | |
parent | 205ab5174d2f2afe19aa8a3e2286767a4060922e (diff) |
kernel/u-boot: update to latest git revision
Diffstat (limited to 'recipes-kernel')
-rw-r--r-- | recipes-kernel/linux/linux-toradex-vf_git.bb | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/recipes-kernel/linux/linux-toradex-vf_git.bb b/recipes-kernel/linux/linux-toradex-vf_git.bb index ed03a0d..0894c20 100644 --- a/recipes-kernel/linux/linux-toradex-vf_git.bb +++ b/recipes-kernel/linux/linux-toradex-vf_git.bb @@ -3,8 +3,8 @@ require recipes-kernel/linux/linux.inc LINUX_VERSION ?= "3.0.15" -SRCREV_colibri-vf = "f9e4905e8ce8459bc4eb56ea8885170e36b849fb" -PR_colibri-vf = "V2.1b2" +SRCREV_colibri-vf = "aef4075a0bcc7860eafa17be0c6e6cfcecc68206" +PR_colibri-vf = "V2.1b3" PV = "${LINUX_VERSION}+gitr${SRCREV}" S = "${WORKDIR}/git" @@ -12,7 +12,6 @@ SRC_URI = "git://git.toradex.com/linux-toradex.git;protocol=git;branch=colibri_v # a Patch # SRC_URI += "file://a.patch " - COMPATIBLE_MACHINE_colibri-vf = "colibri-vf" # Place changes to the defconfig here @@ -36,18 +35,18 @@ do_configure_prepend () { } kernel_do_compile() { - unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE - oe_runmake ${KERNEL_IMAGETYPE_FOR_MAKE} ${KERNEL_ALT_IMAGETYPE} LD="${KERNEL_LD}" - if test "${KERNEL_IMAGETYPE_FOR_MAKE}.gz" = "${KERNEL_IMAGETYPE}"; then - gzip -9c < "${KERNEL_IMAGETYPE_FOR_MAKE}" > "${KERNEL_OUTPUT}" - fi + unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE + oe_runmake ${KERNEL_IMAGETYPE_FOR_MAKE} ${KERNEL_ALT_IMAGETYPE} LD="${KERNEL_LD}" + if test "${KERNEL_IMAGETYPE_FOR_MAKE}.gz" = "${KERNEL_IMAGETYPE}"; then + gzip -9c < "${KERNEL_IMAGETYPE_FOR_MAKE}" > "${KERNEL_OUTPUT}" + fi } do_compile_kernelmodules() { - unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE - if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then - oe_runmake ${PARALLEL_MAKE} modules LD="${KERNEL_LD}" - else - bbnote "no modules to compile" - fi + unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE + if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then + oe_runmake ${PARALLEL_MAKE} modules LD="${KERNEL_LD}" + else + bbnote "no modules to compile" + fi } |