DistroKit Mailinglist
 help / color / mirror / Atom feed
From: Robert Schwebel <r.schwebel@pengutronix.de>
To: Alexander Dahl <ada@thorsis.com>
Cc: distrokit@pengutronix.de
Subject: Re: [DistroKit] [PATCH 9/9] platform: v8a: firmware-sentinel: Add new package
Date: Mon, 27 May 2024 18:17:52 +0200	[thread overview]
Message-ID: <ZlSyMLfMfVIDbHMC@pengutronix.de> (raw)
In-Reply-To: <20240425080303.171897-11-ada@thorsis.com>

Applied to next.

On Thu, Apr 25, 2024 at 10:03:03AM +0200, Alexander Dahl wrote:
> U-Boot for i.MX93 on Ka-Ro QS93-5210 SoM requires this additional firmware.
> 
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> ---
>  configs/platform-v8a/platformconfig           |  1 +
>  .../platforms/firmware-sentinel.in            |  5 ++
>  .../platform-v8a/rules/firmware-sentinel.make | 69 +++++++++++++++++++
>  3 files changed, 75 insertions(+)
>  create mode 100644 configs/platform-v8a/platforms/firmware-sentinel.in
>  create mode 100644 configs/platform-v8a/rules/firmware-sentinel.make
> 
> diff --git a/configs/platform-v8a/platformconfig b/configs/platform-v8a/platformconfig
> index 342aa11..d7df8b8 100644
> --- a/configs/platform-v8a/platformconfig
> +++ b/configs/platform-v8a/platformconfig
> @@ -364,4 +364,5 @@ PTXCONF_FIRMWARE_ROCKCHIP=y
>  PTXCONF_FIRMWARE_ROCKCHIP_RK3568_SDRAM=y
>  PTXCONF_FIRMWARE_ROCKCHIP_RK356x_BL31=y
>  PTXCONF_FIRMWARE_ROCKCHIP_RK356x_BL32=y
> +# PTXCONF_FIRMWARE_SENTINEL is not set
>  # end of non-free firmware blobs       
> diff --git a/configs/platform-v8a/platforms/firmware-sentinel.in b/configs/platform-v8a/platforms/firmware-sentinel.in
> new file mode 100644
> index 0000000..9225969
> --- /dev/null
> +++ b/configs/platform-v8a/platforms/firmware-sentinel.in
> @@ -0,0 +1,5 @@
> +## SECTION=non_free_firmware
> +
> +menuconfig FIRMWARE_SENTINEL
> +	tristate
> +	prompt "firmware-sentinel             "
> diff --git a/configs/platform-v8a/rules/firmware-sentinel.make b/configs/platform-v8a/rules/firmware-sentinel.make
> new file mode 100644
> index 0000000..855e58d
> --- /dev/null
> +++ b/configs/platform-v8a/rules/firmware-sentinel.make
> @@ -0,0 +1,69 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2024 by Alexander Dahl <ada@thorsis.com>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_FIRMWARE_SENTINEL) += firmware-sentinel
> +
> +#
> +# Paths and names
> +#
> +FIRMWARE_SENTINEL_VERSION	:= 0.11
> +FIRMWARE_SENTINEL_MD5		:= 339011b6b199151d835c03089a3c2221
> +FIRMWARE_SENTINEL_SKIP		:= 47053
> +FIRMWARE_SENTINEL		:= firmware-sentinel-$(FIRMWARE_SENTINEL_VERSION)
> +FIRMWARE_SENTINEL_SUFFIX	:= bin
> +FIRMWARE_SENTINEL_URL		:= http://www.nxp.com/lgfiles/NMG/MAD/YOCTO/$(FIRMWARE_SENTINEL).$(FIRMWARE_SENTINEL_SUFFIX)
> +FIRMWARE_SENTINEL_SOURCE	:= $(SRCDIR)/$(FIRMWARE_SENTINEL).$(FIRMWARE_SENTINEL_SUFFIX)
> +FIRMWARE_SENTINEL_DIR		:= $(BUILDDIR)/$(FIRMWARE_SENTINEL)
> +FIRMWARE_SENTINEL_LICENSE	:= NXP-Software-License-Agreement
> +FIRMWARE_SENTINEL_LICENSE_FILES	:= \
> +	file://COPYING;md5=db4762b09b6bda63da103963e6e081de
> +
> +# ----------------------------------------------------------------------------
> +# Extract
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/firmware-sentinel.extract:
> +	@$(call targetinfo)
> +	@$(call clean, $(FIRMWARE_SENTINEL_DIR))
> +	@mkdir -p "$(FIRMWARE_SENTINEL_DIR)"
> +	@dd if="$(FIRMWARE_SENTINEL_SOURCE)" bs=$(FIRMWARE_SENTINEL_SKIP) skip=1 \
> +		| tar -xj --strip-components=2 -C "$(FIRMWARE_SENTINEL_DIR)"
> +	@$(call patchin, FIRMWARE_SENTINEL)
> +	@$(call touch)
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +FIRMWARE_SENTINEL_CONF_TOOL	:= NO
> +
> +# ----------------------------------------------------------------------------
> +# Compile
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/firmware-sentinel.compile:
> +	@$(call targetinfo)
> +	@$(call touch)
> +
> +# ----------------------------------------------------------------------------
> +# Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/firmware-sentinel.install:
> +	@$(call targetinfo)
> +
> +	@install -d -m755 $(FIRMWARE_SENTINEL_PKGDIR)/usr/lib/firmware
> +	@install -v -m644 $(FIRMWARE_SENTINEL_DIR)/mx93a1-ahab-container.img \
> +		$(FIRMWARE_SENTINEL_PKGDIR)/usr/lib/firmware/
> +
> +	@$(call touch)
> +
> +# vim: syntax=make
> -- 
> 2.39.2
> 
> 
> 

-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Steuerwalder Str. 21                       | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-9    |



      reply	other threads:[~2024-05-27 16:17 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-25  8:02 [DistroKit] [PATCH 0/9] platform: v8a: firmware: Rework for upper layers with different boards Alexander Dahl
2024-04-25  8:02 ` [DistroKit] [PATCH 1/9] platform: v8a: firmware-imx: Fix dependencies Alexander Dahl
2024-05-27 16:13   ` Robert Schwebel
2024-04-25  8:02 ` [DistroKit] [PATCH 2/9] platform: v8a: firmware-imx: Rework extract, install, and targetinstall Alexander Dahl
2024-05-27 16:13   ` Robert Schwebel
2024-04-25  8:02 ` [DistroKit] [PATCH 3/9] platform: v8a: firmware-imx: Version bump 8.8 -> 8.23 Alexander Dahl
2024-05-27 16:13   ` Robert Schwebel
2024-04-25  8:02 ` [DistroKit] [PATCH 4/9] platform: v8a: firmware-imx: Install more files for U-Boot Alexander Dahl
2024-05-27 16:14   ` Robert Schwebel
2024-04-25  8:02 ` [DistroKit] [PATCH 5/9] platform: v8a: firmware-imx: Install more files for i.MX93 Alexander Dahl
2024-05-27 16:15   ` Robert Schwebel
2024-04-25  8:02 ` [DistroKit] [PATCH 6/9] platform: v8a: firmware-imx: Move barebox injects to separate package Alexander Dahl
2024-04-25 12:33   ` Alexander Dahl
2024-05-27 16:15     ` Robert Schwebel
2024-05-28  6:32       ` Alexander Dahl
2024-04-25  8:03 ` [DistroKit] [PATCH 7/9] platform: v8a: firmware-rockchip: " Alexander Dahl
2024-05-27 16:16   ` Robert Schwebel
2024-04-25  8:03 ` [DistroKit] [PATCH 8/9] platform: v8a: barebox: Remove extra host prog Alexander Dahl
2024-05-27 16:16   ` Robert Schwebel
2024-05-28  6:14     ` Alexander Dahl
2024-05-28  8:23       ` Robert Schwebel
2024-04-25  8:03 ` [DistroKit] [PATCH 8/8] platform: v8a: firmware-sentinel: Add new package Alexander Dahl
2024-04-25  8:03 ` [DistroKit] [PATCH 9/9] " Alexander Dahl
2024-05-27 16:17   ` Robert Schwebel [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=ZlSyMLfMfVIDbHMC@pengutronix.de \
    --to=r.schwebel@pengutronix.de \
    --cc=ada@thorsis.com \
    --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