blob: bd37006f88fb5ab22cda382d8f6ce09a31a03340 [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
Andrew Geissler5a43b432020-06-13 10:46:56 -05009RECIPE_NO_UPDATE_REASON = "Recipe is updated through a separate process"
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 -050042LINUX_VERSION_EXTENSION ??= "-yocto-${LINUX_KERNEL_TYPE}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043
44# Pick up shared functions
45inherit kernel
46inherit kernel-yocto
Patrick Williamsc124f4f2015-09-15 14:41:29 -050047
48B = "${WORKDIR}/linux-${PACKAGE_ARCH}-${LINUX_KERNEL_TYPE}-build"
49
50do_install_append(){
51 if [ -n "${KMETA}" ]; then
52 rm -rf ${STAGING_KERNEL_DIR}/${KMETA}
53 fi
54}
55
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080056# enable kernel-sample for oeqa/runtime/cases's ksample.py test
57KERNEL_FEATURES_append_qemuall=" features/kernel-sample/kernel-sample.scc"