From: Vincent Davis Jr <vince@underview.tech>
To: openembedded-core@lists.openembedded.org
Cc: Vincent Davis Jr <vince@underview.tech>
Subject: [PATCH v3 04/24] machine: rename kernel prefix
Date: Sun, 12 Jul 2026 10:28:56 -0400 [thread overview]
Message-ID: <20260712142916.2573370-4-vince@underview.tech> (raw)
In-Reply-To: <20260712142916.2573370-1-vince@underview.tech>
Utilize preset variable KERNEL_PACKAGE_NAME
to ensure uniformity with builds if
KERNEL_PACKAGE_NAME variable were to
change.
Signed-off-by: Vincent Davis Jr <vince@underview.tech>
---
meta/conf/machine/include/loongarch/qemuloongarch.inc | 2 +-
meta/conf/machine/include/riscv/qemuriscv.inc | 2 +-
meta/conf/machine/qemuppc64.conf | 2 +-
meta/conf/machine/qemux86-64.conf | 2 +-
meta/conf/machine/qemux86.conf | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/meta/conf/machine/include/loongarch/qemuloongarch.inc b/meta/conf/machine/include/loongarch/qemuloongarch.inc
index e1bcfabc43..9cd26fb6d0 100644
--- a/meta/conf/machine/include/loongarch/qemuloongarch.inc
+++ b/meta/conf/machine/include/loongarch/qemuloongarch.inc
@@ -15,7 +15,7 @@ IMAGE_FSTYPES += "ext4 wic.qcow2"
WKS_FILE ?= "qemuloongarch.wks"
-MACHINE_EXTRA_RRECOMMENDS += " kernel-modules"
+MACHINE_EXTRA_RRECOMMENDS += "${KERNEL_PACKAGE_NAME}-modules"
#EXTRA_IMAGEDEPENDS += "opensbi"
diff --git a/meta/conf/machine/include/riscv/qemuriscv.inc b/meta/conf/machine/include/riscv/qemuriscv.inc
index bac376ce5a..37d5787ee2 100644
--- a/meta/conf/machine/include/riscv/qemuriscv.inc
+++ b/meta/conf/machine/include/riscv/qemuriscv.inc
@@ -15,7 +15,7 @@ IMAGE_FSTYPES += "ext4.zst wic.qcow2"
WKS_FILE ?= "qemuriscv.wks"
-MACHINE_EXTRA_RRECOMMENDS += " kernel-modules"
+MACHINE_EXTRA_RRECOMMENDS += "${KERNEL_PACKAGE_NAME}-modules"
EXTRA_IMAGEDEPENDS += "opensbi"
RISCV_SBI_PLAT ?= "generic"
diff --git a/meta/conf/machine/qemuppc64.conf b/meta/conf/machine/qemuppc64.conf
index 2fbd26a6f9..1cfdeea025 100644
--- a/meta/conf/machine/qemuppc64.conf
+++ b/meta/conf/machine/qemuppc64.conf
@@ -20,4 +20,4 @@ QB_KERNEL_CMDLINE_APPEND = "console=hvc0 nohugevmalloc"
#QB_OPT_APPEND += "-device qemu-xhci -device usb-tablet -device usb-kbd"
QB_OPT_APPEND = "-usb -device usb-tablet"
-MACHINE_EXTRA_RRECOMMENDS += " kernel-modules"
+MACHINE_EXTRA_RRECOMMENDS += "${KERNEL_PACKAGE_NAME}-modules"
diff --git a/meta/conf/machine/qemux86-64.conf b/meta/conf/machine/qemux86-64.conf
index 8aac7634b7..f0c9a6141b 100644
--- a/meta/conf/machine/qemux86-64.conf
+++ b/meta/conf/machine/qemux86-64.conf
@@ -31,7 +31,7 @@ MACHINE_FEATURES += "x86 pci"
MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "v86d"
-MACHINE_EXTRA_RRECOMMENDS = "kernel-module-snd-ens1370 kernel-module-snd-rawmidi"
+MACHINE_EXTRA_RRECOMMENDS = "${KERNEL_PACKAGE_NAME}-module-snd-ens1370 ${KERNEL_PACKAGE_NAME}-module-snd-rawmidi"
WKS_FILE ?= "qemux86-directdisk.wks"
do_image_wic[depends] += "syslinux:do_populate_sysroot syslinux-native:do_populate_sysroot mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot"
diff --git a/meta/conf/machine/qemux86.conf b/meta/conf/machine/qemux86.conf
index 51f080bd2a..22e2ae836e 100644
--- a/meta/conf/machine/qemux86.conf
+++ b/meta/conf/machine/qemux86.conf
@@ -27,7 +27,7 @@ MACHINE_FEATURES += "x86 pci"
MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "v86d"
-MACHINE_EXTRA_RRECOMMENDS = "kernel-module-snd-ens1370 kernel-module-snd-rawmidi"
+MACHINE_EXTRA_RRECOMMENDS = "${KERNEL_PACKAGE_NAME}-module-snd-ens1370 ${KERNEL_PACKAGE_NAME}-module-snd-rawmidi"
WKS_FILE ?= "qemux86-directdisk.wks"
do_image_wic[depends] += "syslinux:do_populate_sysroot syslinux-native:do_populate_sysroot mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot"
--
2.43.0
next prev parent reply other threads:[~2026-07-12 14:29 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-12 14:28 [PATCH v3 01/24] bitbake: globally define KERNEL_PACKAGE_NAME Vincent Davis Jr
2026-07-12 14:28 ` [PATCH v3 02/24] kernel: dont set WORKDIR if KERNEL_PACKAGE_NAME changes Vincent Davis Jr
2026-07-12 14:28 ` [PATCH v3 03/24] kernel: remove setting of KERNEL_PACKAGE_NAME Vincent Davis Jr
2026-07-12 14:28 ` Vincent Davis Jr [this message]
2026-07-12 14:28 ` [PATCH v3 05/24] core-image-kernel-dev: rename kernel prefix Vincent Davis Jr
2026-07-12 14:28 ` [PATCH v3 06/24] packagegroup-self-hosted: " Vincent Davis Jr
2026-07-12 14:28 ` [PATCH v3 07/24] packagegroup-core-boot: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 08/24] packagegroup-base: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 09/24] ofono: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 10/24] iptables: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 11/24] watchdog: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 12/24] nfs-utils: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 13/24] mdadm: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 14/24] systemd: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 15/24] util-linux: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 16/24] connman: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 17/24] hwlatdetect: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 18/24] v86d: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 19/24] efivar: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 20/24] parted: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 21/24] ltp: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 22/24] libnl: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 23/24] linux-kernel-base: " Vincent Davis Jr
2026-07-12 14:29 ` [PATCH v3 24/24] perf: disable discarded-qualifiers checks Vincent Davis Jr
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260712142916.2573370-4-vince@underview.tech \
--to=vince@underview.tech \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox