diff options
| author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-12-18 15:15:05 -0500 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-12-18 23:48:23 -0500 |
| commit | b9a29d2423407c1e50f19dc3f3e154d164c5f0ec (patch) | |
| tree | 58500623c3b1dc66ea97f1dd1e9e2016cd3b3e3e /recipes-kernel | |
| parent | 595cfe484e77b0b3d5f8bbeac720b2c2f51be6ad (diff) | |
| download | meta-virtualization-master-next.tar.gz | |
kernel: add 6.18 kernel supportHEADwhinlattermaster-nextmaster
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-kernel')
| -rw-r--r-- | recipes-kernel/linux/linux-yocto_6.18_virtualization.inc | 4 | ||||
| -rw-r--r-- | recipes-kernel/linux/yocto-cfg-fragments-6.18.bb | 35 |
2 files changed, 39 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-yocto_6.18_virtualization.inc b/recipes-kernel/linux/linux-yocto_6.18_virtualization.inc new file mode 100644 index 00000000..59311487 --- /dev/null +++ b/recipes-kernel/linux/linux-yocto_6.18_virtualization.inc | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | # include the baseline meta virtualization configuration options | ||
| 2 | # after this include, we can do version specific things | ||
| 3 | |||
| 4 | include linux-yocto_virtualization.inc | ||
diff --git a/recipes-kernel/linux/yocto-cfg-fragments-6.18.bb b/recipes-kernel/linux/yocto-cfg-fragments-6.18.bb new file mode 100644 index 00000000..5d41186e --- /dev/null +++ b/recipes-kernel/linux/yocto-cfg-fragments-6.18.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | HOMEPAGE = "https://git.yoctoproject.org/cgit/cgit.cgi/yocto-kernel-cache/" | ||
| 2 | SUMMARY = "Kernel configuration fragments" | ||
| 3 | DESCRIPTION = "Typically used as part of a kernel clone, this is the standalone \ | ||
| 4 | fragment repository. Making it available to other fragment management schemes \ | ||
| 5 | " | ||
| 6 | SECTION = "devel" | ||
| 7 | |||
| 8 | LICENSE = "MIT" | ||
| 9 | LIC_FILES_CHKSUM = "file://COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
| 10 | |||
| 11 | do_configure[noexec] = "1" | ||
| 12 | do_compile[noexec] = "1" | ||
| 13 | INHIBIT_DEFAULT_DEPS = "1" | ||
| 14 | |||
| 15 | LINUX_VERSION ?= "6.18" | ||
| 16 | PV = "v${LINUX_VERSION}+git${SRCREV}" | ||
| 17 | |||
| 18 | SRCREV = "f4a44299f4519c9ee5c06c12ceaa2a214290490e" | ||
| 19 | SRC_URI = "\ | ||
| 20 | git://git.yoctoproject.org/yocto-kernel-cache;branch=yocto-${LINUX_VERSION} \ | ||
| 21 | " | ||
| 22 | |||
| 23 | do_install() { | ||
| 24 | install -d ${D}${base_prefix}/kcfg | ||
| 25 | |||
| 26 | # copy the configuration fragments over to the native deploy | ||
| 27 | cp -r ${S}/* ${D}${base_prefix}/kcfg | ||
| 28 | # scripts bring in a bash dependency we don't want | ||
| 29 | rm -rf ${D}${base_prefix}/kcfg/scripts | ||
| 30 | } | ||
| 31 | |||
| 32 | FILES:${PN} += "kcfg/" | ||
| 33 | SYSROOT_DIRS += "${base_prefix}/kcfg" | ||
| 34 | BBCLASSEXTEND = "native nativesdk" | ||
| 35 | |||
