From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C829335E529; Wed, 21 Jan 2026 23:16:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769037415; cv=none; b=F0aqs9bUkV5BpYe+kY3zy5/wnQ0emUHB70PhyAzEGiQfTKoZM/ROV+6OU37fcBFIvp0YQPZn+RjKIyHlAPouPtj5pnkywUT9wUCNR8J49uGuVAUtC6ah0MgQxTXwZDBAwIMJN4OvM2zflmfA5qTnjkPLFpakDCm5qjwqdrq2b44= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769037415; c=relaxed/simple; bh=qKn/84LDlI03uqGng/MoxJxBqbaU1W93TXttFgcxAgk=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=D43XKph9m2SpQBWANSTiqP173mG5NYrcWNy3jXNmYX5GYOAdiBN1ZKmjCSBHNQG/fgMKQK/Q4pzdDAySL1vRHmxCs1mL24U+C0B7tuOkFvXPuAyu1lxUd3LlbgNwxJ7jujF29O611EpnkdgbDw00xksZoC3OX4C9Yvl8XPVz8Go= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=KsgHatYv; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="KsgHatYv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EDC19C4CEF1; Wed, 21 Jan 2026 23:16:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769037415; bh=qKn/84LDlI03uqGng/MoxJxBqbaU1W93TXttFgcxAgk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=KsgHatYvV6f12kqk2MorJSZSd60noTjOvsN284N1prxq9znLGlZbjzw+4ELqOWvoU jbm31AVd0BlMV3H6nI5blTKjXHPWGXBCaYCQd85sFKBeTSg+MpYfYC8k30CegM5bAQ qRQAkjZEmbpCHVXnkBtXsa25hE3VmBd++hMkQN5L/aSaLsStlr9yrlgKw7gyGqBazg tnHunmYAjIft+rvpuj3tqRh4CV8WRjLQUMHlz7cHz5QLMjJlS5is85tZjxOOSldkmG m4U3hcwBcOoVIhGP9071WRDfmE8wbM0un+Bw0Z3rxjgyyUIqlhyLm5TAZx/HD3XUWf qMPncDu98YpRQ== Date: Wed, 21 Jan 2026 16:16:51 -0700 From: Nathan Chancellor To: Michal Suchanek Cc: linux-kbuild@vger.kernel.org, Nicolas Schier , Rob Clark , Dmitry Baryshkov , Abhinav Kumar , linux-kernel@vger.kernel.org Subject: Re: [PATCH] kbuild: dummy-tools: Add python3 Message-ID: <20260121231651.GA601114@ax162> References: <20260121105801.1827-1-msuchanek@suse.de> Precedence: bulk X-Mailing-List: linux-kbuild@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260121105801.1827-1-msuchanek@suse.de> On Wed, Jan 21, 2026 at 11:57:57AM +0100, Michal Suchanek wrote: > DRM_MSM_VALIDATE_XML depends on a python feature. Add a dummy python > interpreter to make it possible to configure this option with dummy > tools. > > Fixes: b587f413ca47 ("drm/msm/gen_header: allow skipping the validation") > Signed-off-by: Michal Suchanek Sure, this seems reasonable, as Python may become more used for various parts of the kernel over time. I was thinking this could qualify as a fix for Nicolas to take now but the help text of CONFIG_DRM_MSM_VALIDATE_XML mentions this option is mostly targeted at drm/msm developers, so we can probably just take this via kbuild-next. > --- > scripts/dummy-tools/python3 | 5 +++++ > 1 file changed, 5 insertions(+) > create mode 100755 scripts/dummy-tools/python3 > > diff --git a/scripts/dummy-tools/python3 b/scripts/dummy-tools/python3 > new file mode 100755 > index 000000000000..1f3ac6541dd3 > --- /dev/null > +++ b/scripts/dummy-tools/python3 > @@ -0,0 +1,5 @@ > +#!/bin/sh > +# SPDX-License-Identifier: GPL-2.0-only > +# > + > +true > -- > 2.51.0 >