From patchwork Wed Oct 14 15:12:48 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1382208 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=Vatbdytd; dkim-atps=neutral Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4CBGBm5s8xz9sVJ for ; Thu, 15 Oct 2020 02:13:20 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 359FD87AF0; Wed, 14 Oct 2020 15:13:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id P0Evx-phtpXh; Wed, 14 Oct 2020 15:13:16 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id E998587A08; Wed, 14 Oct 2020 15:13:15 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 6A0921BF484 for ; Wed, 14 Oct 2020 15:13:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 66F5E87591 for ; Wed, 14 Oct 2020 15:13:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zEUnHMoOeTQL for ; Wed, 14 Oct 2020 15:13:13 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by whitealder.osuosl.org (Postfix) with ESMTPS id 5B5EA87110 for ; Wed, 14 Oct 2020 15:13:13 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id B07E018150D; Wed, 14 Oct 2020 17:13:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1602688390; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding; bh=tQ344sJlrIxHCRAVSyJEpSs5JQTBCpSG3me5zszKMEw=; b=VatbdytdmnZdhdiyshA/uuQB7lLK73JH0WRyudyz4lzhVlFDyTWJbHaHFUooAz0YTiGUgt ZgGCiaXAJSmhOeUlWT4g7jYcmnY8/YOGTZCeV3Gz2eVkq16WjZ86ZfiMT71472R88RwCNu TzU+3eqa27kX5kOa/IaKyRHeDyYRjgY= To: buildroot@buildroot.org Date: Wed, 14 Oct 2020 17:12:48 +0200 Message-Id: <20201014151249.18330-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH 0/2] package/systemd: unify journal remote options X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Michael Nosthoff , goodmenzy@gmail.com, yann.morin.1998@free.fr, thomas.petazzoni@bootlin.com Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" this patch is the result of the discussion at [0] and fixes #12301. I moved the libqrencode dependency in the first patch for two reasons: - it untangles the if-else construct for the remote part - in systemd 247 homectl will also be using libqrencode for recovery-keys [1] In the second patch I deprecated the systemd-journal-gatewayd options as it is now part of the systemd-journal-remote option. Also since the patch mentioned in the discussion you already needed to set the latter to get gatewayd built. [0] http://lists.busybox.net/pipermail/buildroot/2020-October/294477.html [1] https://github.com/systemd/systemd/blob/master/src/home/homectl-recovery-key.c#L3 Michael Nosthoff (2): package/systemd: link libqrencode independent of remote package/systemd: group all journal-remote tools Config.in.legacy | 7 +++++++ package/systemd/Config.in | 28 ++++++++++++---------------- package/systemd/systemd.mk | 22 +++++++++------------- 3 files changed, 28 insertions(+), 29 deletions(-)