From: Anton Mikanovich <amikan@ilbers.de>
To: Uladzimir Bely <ubely@ilbers.de>, isar-users@googlegroups.com
Subject: Re: [PATCH v5 0/9] Avoid using shell environment during the build
Date: Tue, 22 Feb 2022 09:39:17 +0300 [thread overview]
Message-ID: <906b9067-6482-f755-ff14-3e64bf22afcc@ilbers.de> (raw)
In-Reply-To: <20220213074111.23232-1-ubely@ilbers.de>
13.02.22 10:41, Uladzimir Bely wrote:
> This patchset is a subseries of 'Sbuild/Schroot migration' patchset
> including only preparation patches. It doesn't require any changes
> in host machine configuration for downstreams (meta-iot2050 and
> xenomai-images were tested) so can be merged independently.
>
> In this patchset the main topic is a migration to template files that
> allows to use cleaner build environment.
>
> When this patchset is merged, it will make maintenance of remaining
> sbuild-related patches easier and will shorten their number.
>
> Changes since v5:
> - Removed "ifneq ($(KDIR),)" workaround for dh_auto_clean override
> for "linux-module" patch (while latter sbuild patchset moved to using
> .dsc file).
>
> Changes since v4:
> - Added patch for optee-os-stm32mp15x to avoid shell exports.
>
> Changes since v2:
> - Removed `dpkg_build_export` while a way to continue using
> shell exports for sbuild was found.
>
> Changes since v1:
> - Introduced `dpkg_build_export` function to be used for passing
> variables to build environment;
> - Linux kernel framgments handling is done in Debian way.
>
> Anton Mikanovich (6):
> linux-module: Do not use shell environment
> u-boot: Do not use shell environment
> trusted-firmware: Do not use shell environment
> optee-os: Do not use shell environment
> kselftest: Do not use shell environment
> linux-mainline: Move cfg fragment test to debian/rules
>
> Uladzimir Bely (3):
> template: Copy template attributes on transform
> optee-os-stm32mp15x: Do not use shell environment
> linux-custom: Move cfg fragments applying to debian/rules
>
> .../optee-os/optee-os-stm32mp15x_3.11.0.bb | 5 +-
> .../linux/linux-mainline_5.4.70.bb | 16 ++---
> meta/classes/template.bbclass | 4 +-
> .../files/debian/{rules => rules.tmpl} | 4 +-
> meta/recipes-bsp/optee-os/optee-os-custom.inc | 9 +--
> .../files/debian/{rules => rules.tmpl} | 4 +-
> .../trusted-firmware-a-custom.inc | 9 +--
> .../u-boot/files/debian/{rules => rules.tmpl} | 2 +-
> meta/recipes-bsp/u-boot/u-boot-custom.inc | 9 +--
> .../kselftest/files/{rules => rules.tmpl} | 0
> meta/recipes-kernel/kselftest/kselftest.inc | 21 +++----
> .../linux-module/files/debian/rules | 37 ------------
> .../linux-module/files/debian/rules.tmpl | 60 +++++++++++++++++++
> meta/recipes-kernel/linux-module/module.inc | 34 +----------
> .../linux/files/debian/isar/configure.tmpl | 19 ++++++
> .../linux/files/debian/rules.tmpl | 3 +
> meta/recipes-kernel/linux/linux-custom.inc | 53 +++++++++-------
> 17 files changed, 153 insertions(+), 136 deletions(-)
> rename meta/recipes-bsp/optee-os/files/debian/{rules => rules.tmpl} (75%)
> rename meta/recipes-bsp/trusted-firmware-a/files/debian/{rules => rules.tmpl} (77%)
> rename meta/recipes-bsp/u-boot/files/debian/{rules => rules.tmpl} (94%)
> rename meta/recipes-kernel/kselftest/files/{rules => rules.tmpl} (100%)
> delete mode 100755 meta/recipes-kernel/linux-module/files/debian/rules
> create mode 100755 meta/recipes-kernel/linux-module/files/debian/rules.tmpl
> create mode 100644 meta/recipes-kernel/linux/files/debian/isar/configure.tmpl
>
Applied to next, thanks.
prev parent reply other threads:[~2022-02-22 6:39 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-13 7:41 Uladzimir Bely
2022-02-13 7:41 ` [PATCH v5 1/9] template: Copy template attributes on transform Uladzimir Bely
2022-02-13 7:41 ` [PATCH v5 2/9] linux-module: Do not use shell environment Uladzimir Bely
2022-02-13 7:41 ` [PATCH v5 3/9] u-boot: " Uladzimir Bely
2022-02-13 7:41 ` [PATCH v5 4/9] trusted-firmware: " Uladzimir Bely
2022-02-13 7:41 ` [PATCH v5 5/9] optee-os: " Uladzimir Bely
2022-02-13 7:41 ` [PATCH v5 6/9] optee-os-stm32mp15x: " Uladzimir Bely
2022-02-22 6:49 ` Jan Kiszka
2022-02-22 12:29 ` Uladzimir Bely
2022-02-23 14:01 ` Jan Kiszka
2022-02-13 7:41 ` [PATCH v5 7/9] kselftest: " Uladzimir Bely
2022-02-13 7:41 ` [PATCH v5 8/9] linux-mainline: Move cfg fragment test to debian/rules Uladzimir Bely
2022-02-22 6:50 ` Jan Kiszka
2022-02-13 7:41 ` [PATCH v5 9/9] linux-custom: Move cfg fragments applying " Uladzimir Bely
2022-02-23 13:53 ` Henning Schild
2022-02-24 9:09 ` Uladzimir Bely
2022-02-24 12:36 ` Henning Schild
2022-02-24 14:49 ` Uladzimir Bely
2022-02-24 19:53 ` Henning Schild
2022-02-22 6:39 ` Anton Mikanovich [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=906b9067-6482-f755-ff14-3e64bf22afcc@ilbers.de \
--to=amikan@ilbers.de \
--cc=isar-users@googlegroups.com \
--cc=ubely@ilbers.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