diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-09-24 11:10:15 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-26 14:36:48 +0100 |
commit | 8bcec870b4c25a40926606ad7a27c81f7a7487b1 (patch) | |
tree | 28e3d110e4052426daf204be58c0568674cf3c9a /meta/recipes-kernel | |
parent | b5fba5026bd69a93725fe2d706ecf383680b2a7b (diff) | |
download | poky-8bcec870b4c25a40926606ad7a27c81f7a7487b1.tar.gz |
linux-yocto/5.13: drop recipes
5.13 is EOL upstream, and we've moved to 5.14 for the release, so
we drop the versioned recipes. The kernel tree and branches will
stay available for use, but other layers must create recipes if
they wish to continue with 5.13.
(From OE-Core rev: b08456824ce5d8701ddd2db0be3f8f2f4894853c)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-rt_5.13.bb | 45 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-tiny_5.13.bb | 32 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_5.13.bb | 68 |
3 files changed, 0 insertions, 145 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.13.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.13.bb deleted file mode 100644 index 0b534c3fbc..0000000000 --- a/meta/recipes-kernel/linux/linux-yocto-rt_5.13.bb +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | KBRANCH ?= "v5.13/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 ?= "eaf308f87d26c526da01d90bfb3581e2f40e32e7" | ||
15 | SRCREV_meta ?= "c38435a3cacf424fa686ecac9a95ef8349b83bb3" | ||
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.13;destsuffix=${KMETA}" | ||
19 | |||
20 | LINUX_VERSION ?= "5.13.15" | ||
21 | |||
22 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
23 | |||
24 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | ||
25 | DEPENDS += "openssl-native util-linux-native" | ||
26 | |||
27 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
28 | |||
29 | KMETA = "kernel-meta" | ||
30 | KCONF_BSP_AUDIT_LEVEL = "1" | ||
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)}" | ||
45 | KERNEL_FEATURES:append = "${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/gpio/mockup.scc", "", d)}" | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.13.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.13.bb deleted file mode 100644 index 5b71d75aef..0000000000 --- a/meta/recipes-kernel/linux/linux-yocto-tiny_5.13.bb +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | KBRANCH ?= "v5.13/standard/tiny/base" | ||
2 | KBRANCH:qemuarm ?= "v5.13/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.13.15" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
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 ?= "94f45ad50950df80adbf1a8e1bbc110abff5bbc4" | ||
19 | SRCREV_machine ?= "3bd6397a9acc2cd13228c09097d61c8d1aa3bbdf" | ||
20 | SRCREV_meta ?= "c38435a3cacf424fa686ecac9a95ef8349b83bb3" | ||
21 | |||
22 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
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.13;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.13.bb b/meta/recipes-kernel/linux/linux-yocto_5.13.bb deleted file mode 100644 index a17bddf0f4..0000000000 --- a/meta/recipes-kernel/linux/linux-yocto_5.13.bb +++ /dev/null | |||
@@ -1,68 +0,0 @@ | |||
1 | KBRANCH ?= "v5.13/standard/base" | ||
2 | |||
3 | require recipes-kernel/linux/linux-yocto.inc | ||
4 | |||
5 | # board specific branches | ||
6 | KBRANCH:qemuarm ?= "v5.13/standard/arm-versatile-926ejs" | ||
7 | KBRANCH:qemuarm64 ?= "v5.13/standard/qemuarm64" | ||
8 | KBRANCH:qemumips ?= "v5.13/standard/mti-malta32" | ||
9 | KBRANCH:qemuppc ?= "v5.13/standard/qemuppc" | ||
10 | KBRANCH:qemuriscv64 ?= "v5.13/standard/base" | ||
11 | KBRANCH:qemuriscv32 ?= "v5.13/standard/base" | ||
12 | KBRANCH:qemux86 ?= "v5.13/standard/base" | ||
13 | KBRANCH:qemux86-64 ?= "v5.13/standard/base" | ||
14 | KBRANCH:qemumips64 ?= "v5.13/standard/mti-malta64" | ||
15 | |||
16 | SRCREV_machine:qemuarm ?= "482fd531f2e6ce11c2f2815b90e91452009f18ee" | ||
17 | SRCREV_machine:qemuarm64 ?= "c75650fdc9635f92e0b04c0da0336141f1f8fa54" | ||
18 | SRCREV_machine:qemumips ?= "f8be183487cb429e66e49a2cfd989847c9298a3e" | ||
19 | SRCREV_machine:qemuppc ?= "e55911fc5834f4d5aa527f885cab0ab2a0dbb4b9" | ||
20 | SRCREV_machine:qemuriscv64 ?= "7280c93f5599946db3add473eeb05b34c364938d" | ||
21 | SRCREV_machine:qemuriscv32 ?= "7280c93f5599946db3add473eeb05b34c364938d" | ||
22 | SRCREV_machine:qemux86 ?= "7280c93f5599946db3add473eeb05b34c364938d" | ||
23 | SRCREV_machine:qemux86-64 ?= "7280c93f5599946db3add473eeb05b34c364938d" | ||
24 | SRCREV_machine:qemumips64 ?= "07540093c1a8f876fc6f9410aecc3d7d417780ed" | ||
25 | SRCREV_machine ?= "7280c93f5599946db3add473eeb05b34c364938d" | ||
26 | SRCREV_meta ?= "c38435a3cacf424fa686ecac9a95ef8349b83bb3" | ||
27 | |||
28 | # set your preferred provider of linux-yocto to 'linux-yocto-upstream', and you'll | ||
29 | # get the <version>/base branch, which is pure upstream -stable, and the same | ||
30 | # meta SRCREV as the linux-yocto-standard builds. Select your version using the | ||
31 | # normal PREFERRED_VERSION settings. | ||
32 | BBCLASSEXTEND = "devupstream:target" | ||
33 | DEFAULT_PREFERENCE:class-devupstream = "-1" | ||
34 | SRCREV_machine:class-devupstream ?= "b8c3cc76091b35ad6a3d31cfe152870a6467611f" | ||
35 | PN:class-devupstream = "linux-yocto-upstream" | ||
36 | KBRANCH:class-devupstream = "v5.13/base" | ||
37 | |||
38 | # remap qemuarm to qemuarma15 for the 5.8 kernel | ||
39 | # KMACHINE:qemuarm ?= "qemuarma15" | ||
40 | |||
41 | SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH}; \ | ||
42 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.13;destsuffix=${KMETA}" | ||
43 | |||
44 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
45 | LINUX_VERSION ?= "5.13.15" | ||
46 | |||
47 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | ||
48 | DEPENDS += "openssl-native util-linux-native" | ||
49 | DEPENDS += "gmp-native" | ||
50 | |||
51 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
52 | |||
53 | KMETA = "kernel-meta" | ||
54 | KCONF_BSP_AUDIT_LEVEL = "1" | ||
55 | |||
56 | KERNEL_DEVICETREE:qemuarmv5 = "versatile-pb.dtb" | ||
57 | |||
58 | COMPATIBLE_MACHINE = "qemuarm|qemuarmv5|qemuarm64|qemux86|qemuppc|qemuppc64|qemumips|qemumips64|qemux86-64|qemuriscv64|qemuriscv32" | ||
59 | |||
60 | # Functionality flags | ||
61 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc" | ||
62 | KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}" | ||
63 | KERNEL_FEATURES:append:qemuall=" cfg/virtio.scc features/drm-bochs/drm-bochs.scc" | ||
64 | KERNEL_FEATURES:append:qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
65 | KERNEL_FEATURES:append:qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
66 | KERNEL_FEATURES:append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "", d)}" | ||
67 | KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/scsi/scsi-debug.scc", "", d)}" | ||
68 | KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/gpio/mockup.scc", "", d)}" | ||