From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 21 Mar 2025 09:53:08 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1tvY7o-002FzN-2c for lore@lore.pengutronix.de; Fri, 21 Mar 2025 09:53:08 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1tvY7n-0002Im-VP; Fri, 21 Mar 2025 09:53:07 +0100 To: ptxdist@pengutronix.de Date: Fri, 21 Mar 2025 09:52:39 +0100 MIME-Version: 1.0 Message-ID: List-Id: PTXdist Development Mailing List List-Post: From: Alexander Dahl via ptxdist Precedence: list Cc: Alexander Dahl X-Mailman-Version: 2.1.29 X-BeenThere: ptxdist@pengutronix.de List-Subscribe: , List-Unsubscribe: , List-Archive: Reply-To: ptxdist@pengutronix.de List-Help: Subject: [ptxdist] [RFC PATCH 0/7] libubootenv/swupdate: Introduce new packages Content-Type: message/rfc822 Content-Disposition: inline Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Received: from mail.thorsis.com ([2003:a:e28:26e4::10]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1tvY7Y-00026N-B3 for ptxdist@pengutronix.de; Fri, 21 Mar 2025 09:52:54 +0100 Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id CE4341485891 for ; Fri, 21 Mar 2025 09:52:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thorsis.com; s=dkim; t=1742547170; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=vsGHaN72hKYIUSHXpLE1w4vaZiwgDvzR2as60h5K5Ls=; b=xV+AnT4JIAtxUa1B7T3HELdmFnQdAb6fUPoSiDa38hPFE8Rj6AU8qOxxWSyFLYm6i2q0kE cnJG6sjosTcwhzbLZWEW8ToU7PMYwecyssv8YinhogxqZSCNbyrUrWOtukL+WOrlcRpY9y e8THj6bEx/xCBH041dS+UlHgPQiJhI/vb0GMeE7mIp2rQ6yk2TfG4VR3bVFXbrXwr1wIMx bDWmxhPp0JPfTx8U8QSCw3CoWMgx8bhBL3/llzglejJtdXSRYs63ylD3TSQ+jmn/xDhZmB rmRuV6Os7eJM1iiO0zxj2C7iWdr1kb/ibpv8kREMUefzc48Lz8yc17aDmmcIqg== From: Alexander Dahl To: ptxdist@pengutronix.de Date: Fri, 21 Mar 2025 09:52:39 +0100 Message-Id: <20250321085246.21344-1-ada@thorsis.com> X-Mailer: git-send-email 2.39.5 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Last-TLS-Session-Version: TLSv1.3 X-SA-Exim-Connect-IP: 2003:a:e28:26e4::10 X-SA-Exim-Mail-From: ada@thorsis.com X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.whiteo.stw.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-3.4 required=4.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Subject: [RFC PATCH 0/7] libubootenv/swupdate: Introduce new packages X-SA-Exim-Version: 4.2.1 (built Wed, 08 May 2019 21:11:16 +0000) X-SA-Exim-Scanned: Yes (on metis.whiteo.stw.pengutronix.de) X-PTX-Original-Recipient: ptxdist@pengutronix.de Hei hei, this week I played around with swupdate to see if it can fit the needs for one of our projects. Turns out it does not at the moment, but I prepared these two packages. We won't use swupdate anytime soon, so I post this as RFC, because I can not maintain these packages. Anyone who is interested, feel free to pick it up. Maybe at least libubootenv can be helpful for users building a single BSP for different boards with different U-Boot environments, though. Greets Alex Link: https://swupdate.org/ Alexander Dahl (7): libubootenv: Introduce new package libubootenv: Add option for installing tools swupdate: Introduce new package swupdate: Remove targetinstall of example tools swupdate: Add option to build with OpenSSL support swupdate: Fix passing libubootenv dependency swupdate: Add optional zlib support rules/libubootenv.in | 29 +++++++++ rules/libubootenv.make | 65 +++++++++++++++++++ rules/swupdate.in | 36 +++++++++++ rules/swupdate.make | 141 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 271 insertions(+) create mode 100644 rules/libubootenv.in create mode 100644 rules/libubootenv.make create mode 100644 rules/swupdate.in create mode 100644 rules/swupdate.make base-commit: 35e444db1da5f4b01df92feade288b5d71bb65af -- 2.39.5