From: Zhihang Wei <wzh@ilbers.de>
To: "MOESSBAUER, Felix" <felix.moessbauer@siemens.com>,
"isar-users@googlegroups.com" <isar-users@googlegroups.com>
Subject: Re: [PATCH] meta: Set valid maintainer in recipes used in CI
Date: Thu, 5 Mar 2026 10:27:40 +0100 [thread overview]
Message-ID: <fcd9d04d-e9d8-4408-ae69-d060a08bfd82@ilbers.de> (raw)
In-Reply-To: <0e68c98964eb85eb3a1b4cddab045324738a7a1d.camel@siemens.com>
On 3/4/26 16:09, MOESSBAUER, Felix wrote:
> On Wed, 2026-03-04 at 16:04 +0100, Zhihang Wei wrote:
>> In 712a6247 a quality check was introduced to ensure the recipes have a
>> valid maintainer. This patch adds the missing maintainer fields that
>> trigger warnings in fast and full CI.
> Thanks.
>
> Does the CI have a mode to break on warnings? While the missing
> maintainer is probably just an annoyance, there are more serious
> warnings which we apparently would miss as well.
>
I don't know any quick way to do that. Also I notice the warnings from
bitbake are not recognized as warnings by avocado:
01-/build-auto/isar_next/2015/testsuite/citest.py:ReproTest.test_repro_signed:
2026-03-02 13:04:55,880 avocado.test cibuilder L0345 INFO |
WARNING: mc:rpi-arm64-v8-bookworm:samefile-2.14-r0 do_prepare_build:
MAINTAINER contains '@example.com'. Please set a valid maintainer.
Maybe this needs to be changed to take warnings more seriously.
Zhihang
>
>> Signed-off-by: Zhihang Wei <wzh@ilbers.de>
>> ---
>> .../recipes-app/prebuilt-container/prebuilt-docker-img_0.1.bb | 2 ++
>> .../recipes-app/prebuilt-container/prebuilt-podman-img_0.1.bb | 2 ++
>> meta-isar/recipes-app/samefile/samefile_2.14.bb | 1 +
>> .../jh7110-u-boot-spl-tool/jh7110-u-boot-spl-tool_0.2.bb | 1 +
>> meta-isar/recipes-bsp/opensbi/opensbi-sifive-fu540_1.1.bb | 2 ++
>> .../recipes-bsp/opensbi/opensbi-starfive-visionfive2_1.4.bb | 1 +
>> .../recipes-bsp/optee-client/optee-client-stm32mp15x_3.21.0.bb | 2 ++
>> .../optee-examples/optee-examples-stm32mp15x_3.21.0.bb | 1 +
>> .../optee-ftpm/optee-ftpm-stm32mp15x_0~230316+git.bb | 2 ++
>> meta-isar/recipes-bsp/optee-os/optee-os-beagleplay_4.0.0.bb | 2 ++
>> meta-isar/recipes-bsp/optee-os/optee-os-stm32mp15x_3.21.0.bb | 2 ++
>> .../recipes-bsp/optee-os/optee-os-tadevkit-stm32mp15x_3.21.0.bb | 2 ++
>> .../trusted-firmware-a/trusted-firmware-a-beagleplay_2.10.bb | 2 ++
>> .../trusted-firmware-a/trusted-firmware-a-stm32mp15x_2.4.bb | 2 ++
>> meta-isar/recipes-bsp/u-boot/u-boot-beagleplay_2025.10.bb | 2 ++
>> meta-isar/recipes-bsp/u-boot/u-boot-de0-nano-soc_2020.10.bb | 2 ++
>> .../recipes-bsp/u-boot/u-boot-starfive-visionfive2_2024.01.bb | 2 ++
>> meta-isar/recipes-bsp/u-boot/u-boot-stm32mp15x_2020.10.bb | 2 ++
>> .../dracut-example-lighttpd/dracut-example-lighttpd_0.1.bb | 2 ++
>> meta-isar/recipes-installer/bmap-tools/bmap-tools.bb | 2 ++
>> meta-isar/recipes-kernel/kselftest/kselftest_6.12.59.bb | 2 ++
>> .../recipes-app/test-all-deponlycross/test-all-deponlycross.bb | 2 ++
>> meta-test/recipes-app/test-any-onlycross/test-any-onlycross.bb | 2 +-
>> .../initramfs-fsck-hook/initramfs-fsck-ext4-hook_0.3.bb | 1 +
>> .../initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb | 2 ++
>> .../initramfs-tee-supplicant-hook_0.2.bb | 2 ++
>> 26 files changed, 46 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta-isar/recipes-app/prebuilt-container/prebuilt-docker-img_0.1.bb b/meta-isar/recipes-app/prebuilt-container/prebuilt-docker-img_0.1.bb
>> index fdf7adaf..08701291 100644
>> --- a/meta-isar/recipes-app/prebuilt-container/prebuilt-docker-img_0.1.bb
>> +++ b/meta-isar/recipes-app/prebuilt-container/prebuilt-docker-img_0.1.bb
>> @@ -5,6 +5,8 @@
>>
>> inherit docker-loader
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> CONTAINER_DELETE_AFTER_LOAD = "1"
>>
>> SRC_URI += "\
>> diff --git a/meta-isar/recipes-app/prebuilt-container/prebuilt-podman-img_0.1.bb b/meta-isar/recipes-app/prebuilt-container/prebuilt-podman-img_0.1.bb
>> index f6e43054..84f511fe 100644
>> --- a/meta-isar/recipes-app/prebuilt-container/prebuilt-podman-img_0.1.bb
>> +++ b/meta-isar/recipes-app/prebuilt-container/prebuilt-podman-img_0.1.bb
>> @@ -5,6 +5,8 @@
>>
>> inherit podman-loader
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI += "\
>> docker://quay.io/libpod/alpine;tag=latest \
>> "
>> diff --git a/meta-isar/recipes-app/samefile/samefile_2.14.bb b/meta-isar/recipes-app/samefile/samefile_2.14.bb
>> index f83d519e..1458df69 100644
>> --- a/meta-isar/recipes-app/samefile/samefile_2.14.bb
>> +++ b/meta-isar/recipes-app/samefile/samefile_2.14.bb
>> @@ -7,6 +7,7 @@ inherit dpkg
>>
>> DEBIAN_DEPENDS = "\${misc:Depends}"
>> DESCRIPTION = "utility that finds files with identical contents"
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>>
>> # These variables allow more control, read the classes to find the default
>> # values, or check bitbake -e
>> diff --git a/meta-isar/recipes-bsp/jh7110-u-boot-spl-tool/jh7110-u-boot-spl-tool_0.2.bb b/meta-isar/recipes-bsp/jh7110-u-boot-spl-tool/jh7110-u-boot-spl-tool_0.2.bb
>> index 30ce7f80..e5a908c0 100644
>> --- a/meta-isar/recipes-bsp/jh7110-u-boot-spl-tool/jh7110-u-boot-spl-tool_0.2.bb
>> +++ b/meta-isar/recipes-bsp/jh7110-u-boot-spl-tool/jh7110-u-boot-spl-tool_0.2.bb
>> @@ -7,6 +7,7 @@ inherit dpkg
>>
>> DESCRIPTION = "VisionFive2 SDK spl_tool"
>> LICENSE = "CPL-1"
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>>
>> SRC_URI = "git://github.com/starfive-tech/Tools.git;branch=master;protocol=https;destsuffix=tools"
>> SRCREV = "8c5acc4e5eb7e4ad012463b05a5e3dbbfed1c38d"
>> diff --git a/meta-isar/recipes-bsp/opensbi/opensbi-sifive-fu540_1.1.bb b/meta-isar/recipes-bsp/opensbi/opensbi-sifive-fu540_1.1.bb
>> index 7481eeb3..9f152c6a 100644
>> --- a/meta-isar/recipes-bsp/opensbi/opensbi-sifive-fu540_1.1.bb
>> +++ b/meta-isar/recipes-bsp/opensbi/opensbi-sifive-fu540_1.1.bb
>> @@ -5,6 +5,8 @@
>>
>> inherit opensbi
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI += "https://github.com/riscv/opensbi/archive/v${PV}.tar.gz;downloadfilename=opensbi-${PV}.tar.gz"
>> SRC_URI[sha256sum] = "d183cb890130983a4f01e75fc03ee4f7ea0e16a7923b8af9c6dff7deb2fedaec"
>>
>> diff --git a/meta-isar/recipes-bsp/opensbi/opensbi-starfive-visionfive2_1.4.bb b/meta-isar/recipes-bsp/opensbi/opensbi-starfive-visionfive2_1.4.bb
>> index 84e3a07f..7cd13e5a 100644
>> --- a/meta-isar/recipes-bsp/opensbi/opensbi-starfive-visionfive2_1.4.bb
>> +++ b/meta-isar/recipes-bsp/opensbi/opensbi-starfive-visionfive2_1.4.bb
>> @@ -6,6 +6,7 @@
>> inherit opensbi
>>
>> DESCRIPTION = "OpenSBI firmware for StarFive VisionFive 2"
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>>
>> SRC_URI += "https://github.com/riscv-software-src/opensbi/archive/refs/tags/v${PV}.tar.gz;downloadfilename=opensbi-${PV}.tar.gz"
>> SRC_URI[sha256sum] = "319b62a4186fbce9b81a0c5f0ec9f003a10c808397a72138bc9745d9b87b1eb1"
>> diff --git a/meta-isar/recipes-bsp/optee-client/optee-client-stm32mp15x_3.21.0.bb b/meta-isar/recipes-bsp/optee-client/optee-client-stm32mp15x_3.21.0.bb
>> index 4f03166f..0613e391 100644
>> --- a/meta-isar/recipes-bsp/optee-client/optee-client-stm32mp15x_3.21.0.bb
>> +++ b/meta-isar/recipes-bsp/optee-client/optee-client-stm32mp15x_3.21.0.bb
>> @@ -9,6 +9,8 @@
>>
>> inherit optee-client
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI += "https://github.com/OP-TEE/optee_client/archive/${PV}.tar.gz;downloadfilename=optee_client-${PV}.tar.gz"
>> SRC_URI[sha256sum] = "368164a539b85557d2079fa6cd839ec444869109f96de65d6569e58b0615d026"
>>
>> diff --git a/meta-isar/recipes-bsp/optee-examples/optee-examples-stm32mp15x_3.21.0.bb b/meta-isar/recipes-bsp/optee-examples/optee-examples-stm32mp15x_3.21.0.bb
>> index f04f8842..cbe2a635 100644
>> --- a/meta-isar/recipes-bsp/optee-examples/optee-examples-stm32mp15x_3.21.0.bb
>> +++ b/meta-isar/recipes-bsp/optee-examples/optee-examples-stm32mp15x_3.21.0.bb
>> @@ -5,6 +5,7 @@
>> inherit dpkg
>>
>> DESCRIPTION ?= "OP-TEE examples"
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>>
>> FILESEXTRAPATHS:prepend := "${FILE_DIRNAME}/files:"
>>
>> diff --git a/meta-isar/recipes-bsp/optee-ftpm/optee-ftpm-stm32mp15x_0~230316+git.bb b/meta-isar/recipes-bsp/optee-ftpm/optee-ftpm-stm32mp15x_0~230316+git.bb
>> index 1cf93f03..2c1d6e3f 100644
>> --- a/meta-isar/recipes-bsp/optee-ftpm/optee-ftpm-stm32mp15x_0~230316+git.bb
>> +++ b/meta-isar/recipes-bsp/optee-ftpm/optee-ftpm-stm32mp15x_0~230316+git.bb
>> @@ -8,6 +8,8 @@
>>
>> inherit optee-ftpm
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI += " \
>> https://github.com/Microsoft/ms-tpm-20-ref/archive/${SRCREV}.tar.gz \
>> https://github.com/wolfSSL/wolfssl/archive/${SRCREV-wolfssl}.tar.gz;name=wolfssl \
>> diff --git a/meta-isar/recipes-bsp/optee-os/optee-os-beagleplay_4.0.0.bb b/meta-isar/recipes-bsp/optee-os/optee-os-beagleplay_4.0.0.bb
>> index 8a04c3f4..03516816 100644
>> --- a/meta-isar/recipes-bsp/optee-os/optee-os-beagleplay_4.0.0.bb
>> +++ b/meta-isar/recipes-bsp/optee-os/optee-os-beagleplay_4.0.0.bb
>> @@ -5,6 +5,8 @@
>>
>> inherit optee-os
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI += "https://github.com/OP-TEE/optee_os/archive/${PV}.tar.gz;downloadfilename=optee_os-${PV}.tar.gz"
>> SRC_URI[sha256sum] = "2c2c9525b36c96dfad6216520721b8e9663e6cacc61d0108a0c8bffc0ea175f1"
>>
>> diff --git a/meta-isar/recipes-bsp/optee-os/optee-os-stm32mp15x_3.21.0.bb b/meta-isar/recipes-bsp/optee-os/optee-os-stm32mp15x_3.21.0.bb
>> index 21bf2b30..b04b2a2f 100644
>> --- a/meta-isar/recipes-bsp/optee-os/optee-os-stm32mp15x_3.21.0.bb
>> +++ b/meta-isar/recipes-bsp/optee-os/optee-os-stm32mp15x_3.21.0.bb
>> @@ -5,6 +5,8 @@
>>
>> inherit optee-os
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> require optee-os-stm32mp15x_${PV}.inc
>>
>> # optee-examples integration
>> diff --git a/meta-isar/recipes-bsp/optee-os/optee-os-tadevkit-stm32mp15x_3.21.0.bb b/meta-isar/recipes-bsp/optee-os/optee-os-tadevkit-stm32mp15x_3.21.0.bb
>> index 94cb5561..6bb8c65c 100644
>> --- a/meta-isar/recipes-bsp/optee-os/optee-os-tadevkit-stm32mp15x_3.21.0.bb
>> +++ b/meta-isar/recipes-bsp/optee-os/optee-os-tadevkit-stm32mp15x_3.21.0.bb
>> @@ -3,6 +3,8 @@
>> #
>> # SPDX-License-Identifier: MIT
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> inherit optee-os-tadevkit
>>
>> require optee-os-stm32mp15x_${PV}.inc
>> diff --git a/meta-isar/recipes-bsp/trusted-firmware-a/trusted-firmware-a-beagleplay_2.10.bb b/meta-isar/recipes-bsp/trusted-firmware-a/trusted-firmware-a-beagleplay_2.10.bb
>> index 33c717d5..48e8dd04 100644
>> --- a/meta-isar/recipes-bsp/trusted-firmware-a/trusted-firmware-a-beagleplay_2.10.bb
>> +++ b/meta-isar/recipes-bsp/trusted-firmware-a/trusted-firmware-a-beagleplay_2.10.bb
>> @@ -5,6 +5,8 @@
>>
>> inherit trusted-firmware-a
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI += "https://github.com/ARM-software/arm-trusted-firmware/archive/v${PV}.tar.gz;downloadfilename=arm-trusted-firmware-${PV}.tar.gz"
>> SRC_URI[sha256sum] = "2e18b881ada9198173238cca80086c787b1fa3f698944bde1743142823fc511c"
>>
>> diff --git a/meta-isar/recipes-bsp/trusted-firmware-a/trusted-firmware-a-stm32mp15x_2.4.bb b/meta-isar/recipes-bsp/trusted-firmware-a/trusted-firmware-a-stm32mp15x_2.4.bb
>> index aa62253d..94a2e7de 100644
>> --- a/meta-isar/recipes-bsp/trusted-firmware-a/trusted-firmware-a-stm32mp15x_2.4.bb
>> +++ b/meta-isar/recipes-bsp/trusted-firmware-a/trusted-firmware-a-stm32mp15x_2.4.bb
>> @@ -5,6 +5,8 @@
>>
>> inherit trusted-firmware-a
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI += "https://github.com/ARM-software/arm-trusted-firmware/archive/v${PV}.tar.gz;downloadfilename=arm-trusted-firmware-${PV}.tar.gz"
>> SRC_URI[sha256sum] = "4bfda9fdbe5022f2e88ad3344165f7d38a8ae4a0e2d91d44d9a1603425cc642d"
>>
>> diff --git a/meta-isar/recipes-bsp/u-boot/u-boot-beagleplay_2025.10.bb b/meta-isar/recipes-bsp/u-boot/u-boot-beagleplay_2025.10.bb
>> index 6d0f0c76..baaf9408 100644
>> --- a/meta-isar/recipes-bsp/u-boot/u-boot-beagleplay_2025.10.bb
>> +++ b/meta-isar/recipes-bsp/u-boot/u-boot-beagleplay_2025.10.bb
>> @@ -7,6 +7,8 @@
>>
>> inherit u-boot
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> TI_FIRMWARE_SRCREV = "0a37dc07b1120127eba73c7196a0b532350b9639"
>>
>> SRC_URI += " \
>> diff --git a/meta-isar/recipes-bsp/u-boot/u-boot-de0-nano-soc_2020.10.bb b/meta-isar/recipes-bsp/u-boot/u-boot-de0-nano-soc_2020.10.bb
>> index feecd96d..9d186fc2 100644
>> --- a/meta-isar/recipes-bsp/u-boot/u-boot-de0-nano-soc_2020.10.bb
>> +++ b/meta-isar/recipes-bsp/u-boot/u-boot-de0-nano-soc_2020.10.bb
>> @@ -3,6 +3,8 @@
>> #
>> # SPDX-License-Identifier: MIT
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> require u-boot-${PV}.inc
>>
>> # Just for testing purposes, distro package would be recent enough
>> diff --git a/meta-isar/recipes-bsp/u-boot/u-boot-starfive-visionfive2_2024.01.bb b/meta-isar/recipes-bsp/u-boot/u-boot-starfive-visionfive2_2024.01.bb
>> index 9972803b..7abba742 100644
>> --- a/meta-isar/recipes-bsp/u-boot/u-boot-starfive-visionfive2_2024.01.bb
>> +++ b/meta-isar/recipes-bsp/u-boot/u-boot-starfive-visionfive2_2024.01.bb
>> @@ -5,6 +5,8 @@
>>
>> inherit u-boot
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> COMPATIBLE_MACHINE = "^(starfive-visionfive2)$"
>>
>> SRC_URI += "https://ftp.denx.de/pub/u-boot/u-boot-${PV}.tar.bz2 \
>> diff --git a/meta-isar/recipes-bsp/u-boot/u-boot-stm32mp15x_2020.10.bb b/meta-isar/recipes-bsp/u-boot/u-boot-stm32mp15x_2020.10.bb
>> index aab67bf1..a8e02c65 100644
>> --- a/meta-isar/recipes-bsp/u-boot/u-boot-stm32mp15x_2020.10.bb
>> +++ b/meta-isar/recipes-bsp/u-boot/u-boot-stm32mp15x_2020.10.bb
>> @@ -3,6 +3,8 @@
>> #
>> # SPDX-License-Identifier: MIT
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> require u-boot-${PV}.inc
>>
>> SRC_URI += " \
>> diff --git a/meta-isar/recipes-initramfs/dracut-example-lighttpd/dracut-example-lighttpd_0.1.bb b/meta-isar/recipes-initramfs/dracut-example-lighttpd/dracut-example-lighttpd_0.1.bb
>> index 847e8817..f2f5c690 100644
>> --- a/meta-isar/recipes-initramfs/dracut-example-lighttpd/dracut-example-lighttpd_0.1.bb
>> +++ b/meta-isar/recipes-initramfs/dracut-example-lighttpd/dracut-example-lighttpd_0.1.bb
>> @@ -10,6 +10,8 @@
>>
>> inherit dracut-module
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> # Additional install instructions
>> DRACUT_INSTALL_CONTENT_FILE_NAME = "install.sh"
>>
>> diff --git a/meta-isar/recipes-installer/bmap-tools/bmap-tools.bb b/meta-isar/recipes-installer/bmap-tools/bmap-tools.bb
>> index 405fb9f2..b7ae71ea 100644
>> --- a/meta-isar/recipes-installer/bmap-tools/bmap-tools.bb
>> +++ b/meta-isar/recipes-installer/bmap-tools/bmap-tools.bb
>> @@ -5,6 +5,8 @@
>>
>> inherit dpkg
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI = "apt://${BPN}"
>> PN = "bmap-tools"
>> CHANGELOG_V="<orig-version>+isar"
>> diff --git a/meta-isar/recipes-kernel/kselftest/kselftest_6.12.59.bb b/meta-isar/recipes-kernel/kselftest/kselftest_6.12.59.bb
>> index 5b3ea04c..a0835284 100644
>> --- a/meta-isar/recipes-kernel/kselftest/kselftest_6.12.59.bb
>> +++ b/meta-isar/recipes-kernel/kselftest/kselftest_6.12.59.bb
>> @@ -8,5 +8,7 @@
>>
>> inherit linux-kselftest
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI += "https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-${PV}.tar.xz"
>> SRC_URI[sha256sum] = "a1d2cd7327f10eec022615c1bb12c06439bd110d2020164be97f698f43ca58be"
>> diff --git a/meta-test/recipes-app/test-all-deponlycross/test-all-deponlycross.bb b/meta-test/recipes-app/test-all-deponlycross/test-all-deponlycross.bb
>> index 6af762b9..7873da7c 100644
>> --- a/meta-test/recipes-app/test-all-deponlycross/test-all-deponlycross.bb
>> +++ b/meta-test/recipes-app/test-all-deponlycross/test-all-deponlycross.bb
>> @@ -4,6 +4,8 @@ SRC_URI = "file://rules"
>>
>> inherit dpkg-raw
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> DEPENDS = "test-any-onlycross"
>>
>> do_install() {
>> diff --git a/meta-test/recipes-app/test-any-onlycross/test-any-onlycross.bb b/meta-test/recipes-app/test-any-onlycross/test-any-onlycross.bb
>> index 5b2eace6..9b1381e3 100644
>> --- a/meta-test/recipes-app/test-any-onlycross/test-any-onlycross.bb
>> +++ b/meta-test/recipes-app/test-any-onlycross/test-any-onlycross.bb
>> @@ -1,7 +1,7 @@
>> # Test package using dpkg-raw, which breaks when trying to cross
>> # compile
>>
>> -#MAINTAINER = "Your name here <you@domain.com>"
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>>
>> SRC_URI = "file://rules"
>>
>> diff --git a/meta/recipes-initramfs/initramfs-fsck-hook/initramfs-fsck-ext4-hook_0.3.bb b/meta/recipes-initramfs/initramfs-fsck-hook/initramfs-fsck-ext4-hook_0.3.bb
>> index ef44e315..cdbc4a84 100644
>> --- a/meta/recipes-initramfs/initramfs-fsck-hook/initramfs-fsck-ext4-hook_0.3.bb
>> +++ b/meta/recipes-initramfs/initramfs-fsck-hook/initramfs-fsck-ext4-hook_0.3.bb
>> @@ -8,6 +8,7 @@ DESCRIPTION = "Recipe to add fsck hook to the initramfs"
>> inherit initramfs-hook
>>
>> SRC_URI += "file://initramfs-fsck-hook-ext4.triggers"
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>>
>> HOOK_COPY_EXECS = "fsck fsck.ext4 logsave"
>>
>> diff --git a/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb b/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb
>> index cf39dffb..58e04b7d 100644
>> --- a/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb
>> +++ b/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb
>> @@ -8,6 +8,8 @@
>>
>> inherit initramfs-hook
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI += "file://local-top"
>>
>> # Can be disabled with kernel 6.12 and above
>> diff --git a/meta/recipes-initramfs/initramfs-tee-supplicant-hook/initramfs-tee-supplicant-hook_0.2.bb b/meta/recipes-initramfs/initramfs-tee-supplicant-hook/initramfs-tee-supplicant-hook_0.2.bb
>> index c744be4a..70cd6090 100644
>> --- a/meta/recipes-initramfs/initramfs-tee-supplicant-hook/initramfs-tee-supplicant-hook_0.2.bb
>> +++ b/meta/recipes-initramfs/initramfs-tee-supplicant-hook/initramfs-tee-supplicant-hook_0.2.bb
>> @@ -8,6 +8,8 @@
>>
>> inherit initramfs-hook
>>
>> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
>> +
>> SRC_URI += "file://local-top"
>>
>> HOOK_ADD_MODULES = "tee optee"
>> --
>> 2.39.5
>>
>> --
>> You received this message because you are subscribed to the Google Groups "isar-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
>> To view this discussion visit https://groups.google.com/d/msgid/isar-users/20260304150439.1903493-1-wzh%40ilbers.de.
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/fcd9d04d-e9d8-4408-ae69-d060a08bfd82%40ilbers.de.
next prev parent reply other threads:[~2026-03-05 9:27 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-04 15:04 Zhihang Wei
2026-03-04 15:09 ` 'MOESSBAUER, Felix' via isar-users
2026-03-05 9:27 ` Zhihang Wei [this message]
2026-03-06 9:40 ` Zhihang Wei
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=fcd9d04d-e9d8-4408-ae69-d060a08bfd82@ilbers.de \
--to=wzh@ilbers.de \
--cc=felix.moessbauer@siemens.com \
--cc=isar-users@googlegroups.com \
/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