blob: f191946f2a87beffc525067526fc384777dcfeba [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001SUMMARY = "Linux kernel"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002SECTION = "kernel"
3LICENSE = "GPLv2"
4
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08005LIC_FILES_CHKSUM ?= "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05007UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+(\.\d+)*)"
8
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009INC_PR = "r4"
10
Patrick Williamsc0f7c042017-02-23 20:41:17 -060011# Skip processing of this recipe if it is not explicitly specified as the
12# PREFERRED_PROVIDER for virtual/kernel. This avoids network access required
13# by the use of AUTOREV SRCREVs, which are the default for this recipe.
14python () {
Brad Bishop316dfdd2018-06-25 12:45:53 -040015 if d.getVar("KERNEL_PACKAGE_NAME") == "kernel" and d.getVar("PREFERRED_PROVIDER_virtual/kernel") != d.getVar("PN"):
Patrick Williamsc0f7c042017-02-23 20:41:17 -060016 d.delVar("BB_DONT_CACHE")
Brad Bishop316dfdd2018-06-25 12:45:53 -040017 raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to %s to enable it" % (d.getVar("PN")))
Patrick Williamsc0f7c042017-02-23 20:41:17 -060018}
19
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020DEPENDS += "xz-native bc-native"
21DEPENDS_append_aarch64 = " libgcc"
22KERNEL_CC_append_aarch64 = " ${TOOLCHAIN_OPTIONS}"
23KERNEL_LD_append_aarch64 = " ${TOOLCHAIN_OPTIONS}"
24
Patrick Williamsf1e5d692016-03-30 15:21:19 -050025DEPENDS_append_nios2 = " libgcc"
26KERNEL_CC_append_nios2 = " ${TOOLCHAIN_OPTIONS}"
27KERNEL_LD_append_nios2 = " ${TOOLCHAIN_OPTIONS}"
28
Brad Bishop19323692019-04-05 15:28:33 -040029DEPENDS_append_arc = " libgcc"
30KERNEL_CC_append_arc = " ${TOOLCHAIN_OPTIONS}"
31KERNEL_LD_append_arc = " ${TOOLCHAIN_OPTIONS}"
32
Patrick Williamsc0f7c042017-02-23 20:41:17 -060033KERNEL_FEATURES_append_qemuall=" features/debug/printk.scc"
34
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080035KERNEL_FEATURES_append = " ${@bb.utils.contains('MACHINE_FEATURES', 'numa', 'features/numa/numa.scc', '', d)}"
36
Patrick Williamsc124f4f2015-09-15 14:41:29 -050037# A KMACHINE is the mapping of a yocto $MACHINE to what is built
38# by the kernel. This is typically the branch that should be built,
39# and it can be specific to the machine or shared
40# KMACHINE = "UNDEFINED"
41
Brad Bishopd7bf8c12018-02-25 22:55:05 -050042# The distro or local.conf should set this, but if nobody cares...
43LINUX_KERNEL_TYPE ??= "standard"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050044
45# KMETA ?= ""
46KBRANCH ?= "master"
47KMACHINE ?= "${MACHINE}"
48SRCREV_FORMAT ?= "meta_machine"
49
50# LEVELS:
51# 0: no reporting
52# 1: report options that are specified, but not in the final config
53# 2: report options that are not hardware related, but set by a BSP
54KCONF_AUDIT_LEVEL ?= "1"
55KCONF_BSP_AUDIT_LEVEL ?= "0"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060056KMETA_AUDIT ?= "yes"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050057
Brad Bishopd7bf8c12018-02-25 22:55:05 -050058LINUX_VERSION_EXTENSION ??= "-yocto-${LINUX_KERNEL_TYPE}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050059
60# Pick up shared functions
61inherit kernel
62inherit kernel-yocto
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063
64B = "${WORKDIR}/linux-${PACKAGE_ARCH}-${LINUX_KERNEL_TYPE}-build"
65
66do_install_append(){
67 if [ -n "${KMETA}" ]; then
68 rm -rf ${STAGING_KERNEL_DIR}/${KMETA}
69 fi
70}
71
72# extra tasks
Patrick Williamsc0f7c042017-02-23 20:41:17 -060073addtask kernel_version_sanity_check after do_kernel_metadata do_kernel_checkout before do_compile
Patrick Williamsc124f4f2015-09-15 14:41:29 -050074addtask validate_branches before do_patch after do_kernel_checkout
75addtask kernel_configcheck after do_configure before do_compile
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080076
77# enable kernel-sample for oeqa/runtime/cases's ksample.py test
78KERNEL_FEATURES_append_qemuall=" features/kernel-sample/kernel-sample.scc"