diff options
| -rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-rt_5.10.bb | 44 | ||||
| -rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-tiny_5.10.bb | 32 | ||||
| -rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_5.10.bb | 55 |
3 files changed, 131 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_5.10.bb b/meta/recipes-kernel/linux/linux-yocto-rt_5.10.bb new file mode 100644 index 0000000000..7ced9daa21 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-rt_5.10.bb | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | KBRANCH ?= "v5.10/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 ?= "b0c1a1f057968d659a016b919bd834ff13e26c80" | ||
| 15 | SRCREV_meta ?= "1c2727e4bf30f06e6135ef59999b53cf465f6371" | ||
| 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.10;destsuffix=${KMETA}" | ||
| 19 | |||
| 20 | LINUX_VERSION ?= "5.10.1" | ||
| 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)}" | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_5.10.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_5.10.bb new file mode 100644 index 0000000000..360273b979 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_5.10.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | KBRANCH ?= "v5.10/standard/tiny/base" | ||
| 2 | KBRANCH_qemuarm ?= "v5.10/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.10.1" | ||
| 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 ?= "24ca6a279d74e25bd07323bb901614d77e88fa2c" | ||
| 19 | SRCREV_machine ?= "77592e956cc9cf420b17381e1b43f116395d37b3" | ||
| 20 | SRCREV_meta ?= "1c2727e4bf30f06e6135ef59999b53cf465f6371" | ||
| 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.10;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.10.bb b/meta/recipes-kernel/linux/linux-yocto_5.10.bb new file mode 100644 index 0000000000..9c0a2dbdad --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto_5.10.bb | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | KBRANCH ?= "v5.10/standard/base" | ||
| 2 | |||
| 3 | require recipes-kernel/linux/linux-yocto.inc | ||
| 4 | |||
| 5 | # board specific branches | ||
| 6 | KBRANCH_qemuarm ?= "v5.10/standard/arm-versatile-926ejs" | ||
| 7 | KBRANCH_qemuarm64 ?= "v5.10/standard/qemuarm64" | ||
| 8 | KBRANCH_qemumips ?= "v5.10/standard/mti-malta32" | ||
| 9 | KBRANCH_qemuppc ?= "v5.10/standard/qemuppc" | ||
| 10 | KBRANCH_qemuriscv64 ?= "v5.10/standard/base" | ||
| 11 | KBRANCH_qemux86 ?= "v5.10/standard/base" | ||
| 12 | KBRANCH_qemux86-64 ?= "v5.10/standard/base" | ||
| 13 | KBRANCH_qemumips64 ?= "v5.10/standard/mti-malta64" | ||
| 14 | |||
| 15 | SRCREV_machine_qemuarm ?= "6f80f1148c616a91d5384c5184c4baa40913bc72" | ||
| 16 | SRCREV_machine_qemuarm64 ?= "77592e956cc9cf420b17381e1b43f116395d37b3" | ||
| 17 | SRCREV_machine_qemumips ?= "8036bb43e87a6071a7f1c6d8b8a7db9c6b6e6343" | ||
| 18 | SRCREV_machine_qemuppc ?= "77592e956cc9cf420b17381e1b43f116395d37b3" | ||
| 19 | SRCREV_machine_qemuriscv64 ?= "77592e956cc9cf420b17381e1b43f116395d37b3" | ||
| 20 | SRCREV_machine_qemux86 ?= "77592e956cc9cf420b17381e1b43f116395d37b3" | ||
| 21 | SRCREV_machine_qemux86-64 ?= "77592e956cc9cf420b17381e1b43f116395d37b3" | ||
| 22 | SRCREV_machine_qemumips64 ?= "a3de5b3de3e9c21a277818694b44fa03472a8939" | ||
| 23 | SRCREV_machine ?= "77592e956cc9cf420b17381e1b43f116395d37b3" | ||
| 24 | SRCREV_meta ?= "1c2727e4bf30f06e6135ef59999b53cf465f6371" | ||
| 25 | |||
| 26 | # remap qemuarm to qemuarma15 for the 5.8 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.10;destsuffix=${KMETA}" | ||
| 31 | |||
| 32 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
| 33 | LINUX_VERSION ?= "5.10.1" | ||
| 34 | |||
| 35 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | ||
| 36 | DEPENDS += "openssl-native util-linux-native" | ||
| 37 | DEPENDS += "gmp-native" | ||
| 38 | |||
| 39 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
| 40 | |||
| 41 | KMETA = "kernel-meta" | ||
| 42 | KCONF_BSP_AUDIT_LEVEL = "1" | ||
| 43 | |||
| 44 | KERNEL_DEVICETREE_qemuarmv5 = "versatile-pb.dtb" | ||
| 45 | |||
| 46 | COMPATIBLE_MACHINE = "qemuarm|qemuarmv5|qemuarm64|qemux86|qemuppc|qemumips|qemumips64|qemux86-64|qemuriscv64" | ||
| 47 | |||
| 48 | # Functionality flags | ||
| 49 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc" | ||
| 50 | KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}" | ||
| 51 | KERNEL_FEATURES_append_qemuall=" cfg/virtio.scc features/drm-bochs/drm-bochs.scc" | ||
| 52 | KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
| 53 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
| 54 | KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "", d)}" | ||
| 55 | KERNEL_FEATURES_append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/scsi/scsi-debug.scc", "", d)}" | ||
