From: Roland Hieber <rhi@pengutronix.de>
To: distrokit@pengutronix.de
Cc: Roland Hieber <rhi@pengutronix.de>
Subject: [DistroKit] [PATCH] squash! kernel: remove forked recipe
Date: Tue, 17 Mar 2026 00:44:02 +0100 [thread overview]
Message-ID: <20260316234518.2663320-1-rhi@pengutronix.de> (raw)
In-Reply-To: <1773695564-45679af96681b51a9c84b67b@pty>
The upstream kernel recipe has support to build rust code included in
the kernel, which was previously enabled in our rule, so enable that
too.
Signed-off-by: Roland Hieber <rhi@pengutronix.de>
---
This should take care of the resulting diff in the platformconfigs; when
we don't enable PTXCONF_KERNEL_RUST, all the CONFIG_RUSTC_VERSION=0 etc.
symbols in the kernel config get set to 0.
- Roland
configs/platform-v7a/platformconfig | 3 ++-
configs/platform-v7a_noneon/platformconfig | 3 ++-
configs/platform-v8a/platformconfig | 3 ++-
configs/platform-x86_64/platformconfig | 3 ++-
4 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/configs/platform-v7a/platformconfig b/configs/platform-v7a/platformconfig
index cc9567cb2592..03295be72f5f 100644
--- a/configs/platform-v7a/platformconfig
+++ b/configs/platform-v7a/platformconfig
@@ -150,7 +150,7 @@ PTXCONF_KERNEL_LZOP=y
# PTXCONF_KERNEL_OPENSSL is not set
# PTXCONF_KERNEL_LIBELF is not set
PTXCONF_KERNEL_GCC_PLUGINS=y
-# PTXCONF_KERNEL_RUST is not set
+PTXCONF_KERNEL_RUST=y
PTXCONF_KERNEL_CONFIG_BASE_VERSION=y
#
@@ -343,6 +343,7 @@ PTXCONF_CODE_SIGNING=y
PTXCONF_CODE_SIGNING_PROVIDER="devel"
PTXCONF_CODE_SIGNING_PROVIDER_DEVEL=y
PTXCONF_HOST_PTX_CODE_SIGNING_DEV=y
+PTXCONF_HOST_BINDGEN_CLI=y
PTXCONF_HOST_CMAKE=y
PTXCONF_HOST_DOSFSTOOLS=y
PTXCONF_HOST_DTC=y
diff --git a/configs/platform-v7a_noneon/platformconfig b/configs/platform-v7a_noneon/platformconfig
index 3168417c06b2..9924449d6e60 100644
--- a/configs/platform-v7a_noneon/platformconfig
+++ b/configs/platform-v7a_noneon/platformconfig
@@ -147,7 +147,7 @@ PTXCONF_KERNEL_LZOP=y
# PTXCONF_KERNEL_OPENSSL is not set
# PTXCONF_KERNEL_LIBELF is not set
PTXCONF_KERNEL_GCC_PLUGINS=y
-# PTXCONF_KERNEL_RUST is not set
+PTXCONF_KERNEL_RUST=y
PTXCONF_KERNEL_CONFIG_BASE_VERSION=y
#
@@ -260,6 +260,7 @@ PTXCONF_CODE_SIGNING=y
PTXCONF_CODE_SIGNING_PROVIDER="devel"
PTXCONF_CODE_SIGNING_PROVIDER_DEVEL=y
PTXCONF_HOST_PTX_CODE_SIGNING_DEV=y
+PTXCONF_HOST_BINDGEN_CLI=y
PTXCONF_HOST_CMAKE=y
PTXCONF_HOST_DOSFSTOOLS=y
PTXCONF_HOST_E2FSPROGS=y
diff --git a/configs/platform-v8a/platformconfig b/configs/platform-v8a/platformconfig
index be5ee7732893..1a9de1f3f65f 100644
--- a/configs/platform-v8a/platformconfig
+++ b/configs/platform-v8a/platformconfig
@@ -147,7 +147,7 @@ PTXCONF_KERNEL_DTS="armada-3720-community.dts freescale/imx8mm-evk.dts freescale
PTXCONF_KERNEL_OPENSSL=y
# PTXCONF_KERNEL_LIBELF is not set
# PTXCONF_KERNEL_GCC_PLUGINS is not set
-# PTXCONF_KERNEL_RUST is not set
+PTXCONF_KERNEL_RUST=y
PTXCONF_KERNEL_CONFIG_BASE_VERSION=y
#
@@ -316,6 +316,7 @@ PTXCONF_CODE_SIGNING=y
PTXCONF_CODE_SIGNING_PROVIDER="devel"
PTXCONF_CODE_SIGNING_PROVIDER_DEVEL=y
PTXCONF_HOST_PTX_CODE_SIGNING_DEV=y
+PTXCONF_HOST_BINDGEN_CLI=y
PTXCONF_HOST_CMAKE=y
PTXCONF_HOST_DOSFSTOOLS=y
PTXCONF_HOST_DTC=y
diff --git a/configs/platform-x86_64/platformconfig b/configs/platform-x86_64/platformconfig
index b53c6fa52656..7fe00f002209 100644
--- a/configs/platform-x86_64/platformconfig
+++ b/configs/platform-x86_64/platformconfig
@@ -147,7 +147,7 @@ PTXCONF_KERNEL_LZOP=y
# PTXCONF_KERNEL_OPENSSL is not set
PTXCONF_KERNEL_LIBELF=y
# PTXCONF_KERNEL_GCC_PLUGINS is not set
-# PTXCONF_KERNEL_RUST is not set
+PTXCONF_KERNEL_RUST=y
PTXCONF_KERNEL_CONFIG_BASE_VERSION=y
#
@@ -243,6 +243,7 @@ PTXCONF_CODE_SIGNING=y
PTXCONF_CODE_SIGNING_PROVIDER="devel"
PTXCONF_CODE_SIGNING_PROVIDER_DEVEL=y
PTXCONF_HOST_PTX_CODE_SIGNING_DEV=y
+PTXCONF_HOST_BINDGEN_CLI=y
PTXCONF_HOST_CMAKE=y
PTXCONF_HOST_E2FSPROGS=y
PTXCONF_HOST_EXTRACT_CERT=y
--
2.47.3
prev parent reply other threads:[~2026-03-16 23:45 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-16 12:49 [DistroKit] [PATCH 1/6] v8a: sync platformconfig Roland Hieber
2026-03-16 12:49 ` [DistroKit] [PATCH 2/6] v8a: sync barebox-r5.config Roland Hieber
2026-03-16 12:49 ` [DistroKit] [PATCH 3/6] ptxdist: migrate 2025.11.0 -> 2026.03.0 with default options Roland Hieber
2026-03-16 12:49 ` [DistroKit] [PATCH 4/6] scripts: remove forked ptxd_make_world_inject.sh Roland Hieber
2026-03-16 12:49 ` [DistroKit] [PATCH 5/6] kernel: remove forked recipe Roland Hieber
2026-03-16 12:49 ` [DistroKit] [PATCH 6/6] v8a: remove outdated barebox.rockchip.make Roland Hieber
2026-03-16 14:09 ` [DistroKit] [PATCH 1/6] v8a: sync platformconfig Robert Schwebel
2026-03-16 22:36 ` Roland Hieber
2026-03-16 23:44 ` Roland Hieber [this message]
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=20260316234518.2663320-1-rhi@pengutronix.de \
--to=rhi@pengutronix.de \
--cc=distrokit@pengutronix.de \
/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