blob: ec056db4a0bab631b52e6b0f5ae35f0584cd716e [file] [log] [blame]
Brad Bishop286d45c2018-10-02 15:21:57 -04001# This version extension should match CONFIG_LOCALVERSION in defconfig
2XILINX_RELEASE_VERSION ?= ""
3LINUX_VERSION_EXTENSION ?= "-xilinx-${XILINX_RELEASE_VERSION}"
4PV = "${LINUX_VERSION}${LINUX_VERSION_EXTENSION}+git${SRCPV}"
5
6# Sources, by default allow for the use of SRCREV pointing to orphaned tags/commits
7KBRANCH ?= ""
8SRCBRANCHARG = "${@['nobranch=1', 'branch=${KBRANCH}'][d.getVar('KBRANCH', True) != '']}"
9
10FILESOVERRIDES_append = ":${XILINX_RELEASE_VERSION}"
11KERNELURI ?= "git://github.com/Xilinx/linux-xlnx.git;protocol=https"
12SRC_URI = "${KERNELURI};${SRCBRANCHARG}"
13
14SRCREV_machine ?= "${SRCREV}"
15
16require recipes-kernel/linux/linux-yocto.inc
17require linux-microblaze.inc
18
19DESCRIPTION = "Xilinx Kernel"
20
21# Force the use of the KBUILD_DEFCONFIG even if some other defconfig was generated in the ${WORKDIR}
22do_kernel_metadata_prepend () {
23 [ -n "${KBUILD_DEFCONFIG}" ] && [ -e ${WORKDIR}/defconfig ] && rm ${WORKDIR}/defconfig
24}
25
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080026inherit kernel-simpleimage
27
Brad Bishop286d45c2018-10-02 15:21:57 -040028# Default to be only compatible with specific machines or soc families
29COMPATIBLE_MACHINE ?= "^$"
30COMPATIBLE_MACHINE_zynq = ".*"
31COMPATIBLE_MACHINE_zynqmp = ".*"
32COMPATIBLE_MACHINE_microblaze = ".*"
33
34# Use DEFCONFIGs for configuring linux-xlnx kernels
35KCONFIG_MODE ?= "alldefconfig"
36KBUILD_DEFCONFIG_zynqmp = "xilinx_zynqmp_defconfig"
37KBUILD_DEFCONFIG_zynq = "xilinx_zynq_defconfig"
38KBUILD_DEFCONFIG_microblaze = "mmu_defconfig"
39
40# Add meta-xilinx kmeta, used for MicroBlaze BSP fragments
41FILESEXTRAPATHS_prepend := "${THISDIR}:"
42SRC_URI_append = " file://xilinx-kmeta;type=kmeta;name=xilinx-kmeta;destsuffix=xilinx-kmeta"
43
44# MicroBlaze BSP fragments
45KERNEL_FEATURES_append_kc705-microblazeel = " bsp/kc705-microblazeel/kc705-microblazeel.scc"
46
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080047KERNEL_FEATURES_append_zynqmp = "${@bb.utils.contains('DISTRO_FEATURES', 'xen', ' bsp/xilinx/xen.scc', '', d)}"
48
49KERNEL_FEATURES_append_zynqmp = "${@bb.utils.contains('IMAGE_FEATURES', 'fpga-manager', ' features/overlay/overlay.scc', '', d)}"
50