diff options
author | Sipke Vriend <sipke.vriend@xilinx.com> | 2013-10-22 10:57:07 +1000 |
---|---|---|
committer | Sipke Vriend <sipke.vriend@xilinx.com> | 2013-10-22 10:57:07 +1000 |
commit | fc8695c29ad33ec6b803679be51ac1130548a34a (patch) | |
tree | a19526ee8158255fe80cbb347e82d0d189dd321b | |
parent | 21c3cd3f058d736742ebc23a7a954f23456fbea5 (diff) | |
download | meta-xilinx-fc8695c29ad33ec6b803679be51ac1130548a34a.tar.gz |
recipes-kernel:linux-xlnx: Adjust kernel to use xlnx_3.8 branch
linux-xlnx has an xlnx_3.8 branch, adjust the recipe to us it.
Signed-off-by: Sipke Vriend <sipke.vriend@xilinx.com>
-rw-r--r-- | recipes-kernel/linux/linux-xlnx.inc | 3 | ||||
-rw-r--r-- | recipes-kernel/linux/linux-xlnx_3.8.bb | 13 |
2 files changed, 6 insertions, 10 deletions
diff --git a/recipes-kernel/linux/linux-xlnx.inc b/recipes-kernel/linux/linux-xlnx.inc index 7d2952c6..182e93f6 100644 --- a/recipes-kernel/linux/linux-xlnx.inc +++ b/recipes-kernel/linux/linux-xlnx.inc | |||
@@ -9,7 +9,8 @@ LINUX_VERSION_EXTENSION ?= "-xilinx" | |||
9 | PV = "${LINUX_VERSION}${LINUX_VERSION_EXTENSION}+git${SRCREV}" | 9 | PV = "${LINUX_VERSION}${LINUX_VERSION_EXTENSION}+git${SRCREV}" |
10 | 10 | ||
11 | # Sources | 11 | # Sources |
12 | SRC_URI = "git://github.com/Xilinx/linux-xlnx;protocol=git" | 12 | KBRANCH ?= "master" |
13 | SRC_URI = "git://github.com/Xilinx/linux-xlnx;protocol=git;branch=${KBRANCH}" | ||
13 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 14 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" |
14 | FILESEXTRAPATHS_prepend := "${THISDIR}/linux-xlnx:" | 15 | FILESEXTRAPATHS_prepend := "${THISDIR}/linux-xlnx:" |
15 | 16 | ||
diff --git a/recipes-kernel/linux/linux-xlnx_3.8.bb b/recipes-kernel/linux/linux-xlnx_3.8.bb index 24cf7d4e..3a66e901 100644 --- a/recipes-kernel/linux/linux-xlnx_3.8.bb +++ b/recipes-kernel/linux/linux-xlnx_3.8.bb | |||
@@ -1,16 +1,11 @@ | |||
1 | KBRANCH = "xlnx_3.8" | ||
1 | # See include file for common information | 2 | # See include file for common information |
2 | include linux-xlnx.inc | 3 | include linux-xlnx.inc |
3 | 4 | ||
4 | PR = "r1" | 5 | PR = "r1" |
5 | 6 | ||
6 | # Kernel version and SRCREV correspond to: github.com/Xilinx v14.5 tag | 7 | # Kernel version and SRCREV correspond to: github.com/Xilinx xlnx_3.8 branch |
7 | LINUX_VERSION = "3.8" | 8 | LINUX_VERSION = "3.8" |
8 | SRCREV = "6a0bedad60e2bca8d9b50bf81b9895e29e31a6d7" | 9 | #SRCREV = "7a65c6dd165a8fc052ba0321eb706536e6cbef71" |
10 | SRCREV ?= "${AUTOREV}" | ||
9 | 11 | ||
10 | # MicroBlaze patches | ||
11 | SRC_URI_append_microblaze = " \ | ||
12 | file://microblaze_Do_not_use_r6_in_head.S.patch \ | ||
13 | file://microblaze_Fix_free_init_pages_function.patch \ | ||
14 | file://microblaze_Fix_initrd_support.patch \ | ||
15 | file://arch_microblaze_Add_linux.bin.ub_target.patch \ | ||
16 | " | ||