diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2020-01-28 17:14:08 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-03 00:10:11 +0000 |
commit | 790ac81044ebd24e542807247d0434f0853fb340 (patch) | |
tree | 61a6c21fd94e9f17995758d7ea68c46b1ef2e47e | |
parent | a264dc462c578ac6d7c40bd9489c19fb624f16b5 (diff) | |
download | poky-790ac81044ebd24e542807247d0434f0853fb340.tar.gz |
linux-yocto: introduce 5.4 recipes
This creates recipes for the v5.4/* branches of the linux-yocto
reference kernel.
preempt-rt, yaffs2, aufs5 and reference board specific patches are
part of these branches. All major architectures: x86,x86-64,ARM,
ARM64,ppc,mips and mips64 have been feature tested against this
reference.
5.4 is a LTS release, and as such will receive -stable updates
for the duration of upstream korg support.
(From OE-Core rev: 2c2bdd9661e4341178f2d831bb56e961e74e8509)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb | 44 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb | 32 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_5.4.bb | 54 |
3 files changed, 130 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb new file mode 100644 index 0000000000..52f0e3b833 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.4.bb | |||
@@ -0,0 +1,44 @@ | |||
1 | KBRANCH ?= "v5.4/standard/preempt-rt/base" | ||
2 | |||
3 | require recipes-kernel/linux/linux-yocto.inc | ||
4 | |||
5 | # Skip processing of this recipe if it is not explicitly specified as the | ||
6 | # PREFERRED_PROVIDER for virtual/kernel. This avoids errors when trying | ||
7 | # to build multiple virtual/kernel providers, e.g. as dependency of | ||
8 | # core-image-rt-sdk, core-image-rt. | ||
9 | python () { | ||
10 | if d.getVar("KERNEL_PACKAGE_NAME") == "kernel" and d.getVar("PREFERRED_PROVIDER_virtual/kernel") != "linux-yocto-rt": | ||
11 | raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it") | ||
12 | } | ||
13 | |||
14 | SRCREV_machine ?= "5d5d4070c5f8b10a4c6bda37e77071ce37f102d5" | ||
15 | SRCREV_meta ?= "a48522779fae4887c47268e5f650bf10c94a165c" | ||
16 | |||
17 | SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine \ | ||
18 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.4;destsuffix=${KMETA}" | ||
19 | |||
20 | LINUX_VERSION ?= "5.4.15" | ||
21 | |||
22 | LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" | ||
23 | |||
24 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | ||
25 | DEPENDS += "openssl-native util-linux-native" | ||
26 | |||
27 | PV = "5.4.15" | ||
28 | |||
29 | KMETA = "kernel-meta" | ||
30 | KCONF_BSP_AUDIT_LEVEL = "2" | ||
31 | |||
32 | LINUX_KERNEL_TYPE = "preempt-rt" | ||
33 | |||
34 | COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm|qemuarmv5|qemuarm64|qemuppc|qemumips)" | ||
35 | |||
36 | KERNEL_DEVICETREE_qemuarmv5 = "versatile-pb.dtb" | ||
37 | |||
38 | # Functionality flags | ||
39 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc" | ||
40 | KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}" | ||
41 | KERNEL_FEATURES_append_qemuall=" cfg/virtio.scc features/drm-bochs/drm-bochs.scc" | ||
42 | KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
43 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
44 | KERNEL_FEATURES_append = "${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/scsi/scsi-debug.scc", "" ,d)}" | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb new file mode 100644 index 0000000000..a028b37548 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.4.bb | |||
@@ -0,0 +1,32 @@ | |||
1 | KBRANCH ?= "v5.4/standard/tiny/base" | ||
2 | KBRANCH_qemuarm ?= "v5.4/standard/tiny/arm-versatile-926ejs" | ||
3 | |||
4 | LINUX_KERNEL_TYPE = "tiny" | ||
5 | KCONFIG_MODE = "--allnoconfig" | ||
6 | |||
7 | require recipes-kernel/linux/linux-yocto.inc | ||
8 | |||
9 | LINUX_VERSION ?= "5.4.15" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" | ||
11 | |||
12 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | ||
13 | DEPENDS += "openssl-native util-linux-native" | ||
14 | |||
15 | KMETA = "kernel-meta" | ||
16 | KCONF_BSP_AUDIT_LEVEL = "2" | ||
17 | |||
18 | SRCREV_machine_qemuarm ?= "9eeafafc19278b5c5376ba1fd9eae26626730458" | ||
19 | SRCREV_machine ?= "cdda35317561d2741b396efa623ace0bd2212c16" | ||
20 | SRCREV_meta ?= "a48522779fae4887c47268e5f650bf10c94a165c" | ||
21 | |||
22 | PV = "5.4.15" | ||
23 | |||
24 | SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine \ | ||
25 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.4;destsuffix=${KMETA}" | ||
26 | |||
27 | COMPATIBLE_MACHINE = "qemux86|qemux86-64|qemuarm|qemuarmv5" | ||
28 | |||
29 | # Functionality flags | ||
30 | KERNEL_FEATURES = "" | ||
31 | |||
32 | KERNEL_DEVICETREE_qemuarmv5 = "versatile-pb.dtb" | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.4.bb b/meta/recipes-kernel/linux/linux-yocto_5.4.bb new file mode 100644 index 0000000000..9fbc47d79e --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto_5.4.bb | |||
@@ -0,0 +1,54 @@ | |||
1 | KBRANCH ?= "v5.4/standard/base" | ||
2 | |||
3 | require recipes-kernel/linux/linux-yocto.inc | ||
4 | |||
5 | # board specific branches | ||
6 | KBRANCH_qemuarm ?= "v5.4/standard/arm-versatile-926ejs" | ||
7 | KBRANCH_qemuarm64 ?= "v5.4/standard/qemuarm64" | ||
8 | KBRANCH_qemumips ?= "v5.4/standard/mti-malta32" | ||
9 | KBRANCH_qemuppc ?= "v5.4/standard/qemuppc" | ||
10 | KBRANCH_qemuriscv64 ?= "v5.4/standard/base" | ||
11 | KBRANCH_qemux86 ?= "v5.4/standard/base" | ||
12 | KBRANCH_qemux86-64 ?= "v5.4/standard/base" | ||
13 | KBRANCH_qemumips64 ?= "v5.4/standard/mti-malta64" | ||
14 | |||
15 | SRCREV_machine_qemuarm ?= "637086def651a00b1274a80cd3ca740e271eb0f9" | ||
16 | SRCREV_machine_qemuarm64 ?= "cdda35317561d2741b396efa623ace0bd2212c16" | ||
17 | SRCREV_machine_qemumips ?= "bfe04753d00b0f36848bb8204020b69d0e78f02a" | ||
18 | SRCREV_machine_qemuppc ?= "cdda35317561d2741b396efa623ace0bd2212c16" | ||
19 | SRCREV_machine_qemuriscv64 ?= "cdda35317561d2741b396efa623ace0bd2212c16" | ||
20 | SRCREV_machine_qemux86 ?= "cdda35317561d2741b396efa623ace0bd2212c16" | ||
21 | SRCREV_machine_qemux86-64 ?= "cdda35317561d2741b396efa623ace0bd2212c16" | ||
22 | SRCREV_machine_qemumips64 ?= "81cd255c72add4dcf06603250869f739bb4f05cb" | ||
23 | SRCREV_machine ?= "cdda35317561d2741b396efa623ace0bd2212c16" | ||
24 | SRCREV_meta ?= "a48522779fae4887c47268e5f650bf10c94a165c" | ||
25 | |||
26 | # remap qemuarm to qemuarma15 for the 5.4 kernel | ||
27 | # KMACHINE_qemuarm ?= "qemuarma15" | ||
28 | |||
29 | SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH}; \ | ||
30 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.4;destsuffix=${KMETA}" | ||
31 | |||
32 | LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" | ||
33 | LINUX_VERSION ?= "5.4.15" | ||
34 | |||
35 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | ||
36 | DEPENDS += "openssl-native util-linux-native" | ||
37 | |||
38 | PV = "5.4.15" | ||
39 | |||
40 | KMETA = "kernel-meta" | ||
41 | KCONF_BSP_AUDIT_LEVEL = "2" | ||
42 | |||
43 | KERNEL_DEVICETREE_qemuarmv5 = "versatile-pb.dtb" | ||
44 | |||
45 | COMPATIBLE_MACHINE = "qemuarm|qemuarmv5|qemuarm64|qemux86|qemuppc|qemumips|qemumips64|qemux86-64|qemuriscv64" | ||
46 | |||
47 | # Functionality flags | ||
48 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc" | ||
49 | KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}" | ||
50 | KERNEL_FEATURES_append_qemuall=" cfg/virtio.scc features/drm-bochs/drm-bochs.scc" | ||
51 | KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
52 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
53 | KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}" | ||
54 | KERNEL_FEATURES_append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/scsi/scsi-debug.scc", "" ,d)}" | ||