From patchwork Fri Jul 17 15:46:09 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 92749 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5873FC44523 for ; Fri, 17 Jul 2026 15:46:54 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.86.1784303204053250031 for ; Fri, 17 Jul 2026 08:46:44 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@arm.com header.s=foss header.b=mAXOcwZu; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 4BC0B16A3 for ; Fri, 17 Jul 2026 08:46:39 -0700 (PDT) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 27F7A3F905 for ; Fri, 17 Jul 2026 08:46:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1784303203; bh=jtvCkP9SqWIcyXEtq/0Ka7gPCWbt8NhziEODy+OYebc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=mAXOcwZuLTGZm5fbHrHbTSQKqu+X1XvpA1CTgyTqqhflRPeRDMVzG+wKrEpZo53Ed hyB/crpk5VLeURsCJq0+82asL4w01JtTefsLC3t+UK3Zw9fbKQx0fU3GAmtfWbypLc Pqh02KyUZiuwCxOHQ7n2+1pzzWrDPnMF4Uhtpo6M= From: Ross Burton To: openembedded-core@lists.openembedded.org Subject: [PATCH v2 2/7] classes/systemd: remove obsolete DEPENDS Date: Fri, 17 Jul 2026 16:46:09 +0100 Message-ID: <20260717154614.3701267-2-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260717154614.3701267-1-ross.burton@arm.com> References: <20260717154614.3701267-1-ross.burton@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 17 Jul 2026 15:46:54 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/241209 Recipes that use systemd don't need systemctl at build time, so this dependency can be removed. It was added in [1] but no rationale was given or is obvious. [1] oe-core e9444649f4 ("systemd: Restore mask and preset targets, fix instance creation") Signed-off-by: Ross Burton --- meta/classes-recipe/systemd.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/classes-recipe/systemd.bbclass b/meta/classes-recipe/systemd.bbclass index 5d8e6086b26..df464badddf 100644 --- a/meta/classes-recipe/systemd.bbclass +++ b/meta/classes-recipe/systemd.bbclass @@ -21,7 +21,6 @@ python __anonymous() { # Inhibit update-rcd from doing any work so that systemd images don't have # redundant init files. if bb.utils.contains('DISTRO_FEATURES', 'systemd', True, False, d): - d.appendVar("DEPENDS", " systemd-systemctl-native") d.setVar("INHIBIT_UPDATERCD_BBCLASS", "1") }