public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Anton Mikanovich <amikan@ilbers.de>
To: Uladzimir Bely <ubely@ilbers.de>, isar-users@googlegroups.com
Subject: Re: [PATCH v3 0/6] Update rpi targets to bullseye
Date: Thu, 27 Jan 2022 18:01:54 +0300	[thread overview]
Message-ID: <de1327ae-93b4-1b48-7570-6efe3425f8eb@ilbers.de> (raw)
In-Reply-To: <20220119065902.13514-1-ubely@ilbers.de>

19.01.2022 09:58, Uladzimir Bely wrote:
> This patchset adds Bullseye targets for Raspbian (Raspberry Pi OS).
>
> Since Raspbian Stretch supported by Isar, many things happend
> in Raspberry world:
> - linux-image-rpi* and linux-headers-rpi* packages are now outdated.
> They are still provided in Raspbian Buster, but only for older kernels.
> Currently, kernel images and modules are provided by the package
> `raspberrypi-kernel` and kernel headers for all kernels come with
> the package `raspberrypi-kernel-headers`
> - new Raspberry boards were released, based on three different SoCs.
> - new 64bit version or RaspiOS for Raspberry Pi 4 became available.
> It uses Debian mirrors for bootstrap and package delivery, contrary
> to 32bit version that continues using own RaspiOs mirrors, with
> packages compiled to support old (armv6) hardware.
>
> This patchset adds RaspiOS Bullseye configs to build Isar for
> all three possible hardware options:
> - for Raspberry Pi 1, Pi Zero, Pi Zero W, and Compute Module;
> - for Raspberry Pi 2, Pi 3, Pi 3+, and Compute Module 3;
> - for Raspberry Pi 4 (32 bit);
> - for Raspberry Pi 4 (64 bit).
>
> Changes since v1:
> - Rebased on top of testsuite/iMX6 patchsets;
> - Small corrections in commit messages.
>
> Changes since v2:
> - Add armhf as compat arch for arm64 in raspios-bullseye distro config.
>
> Uladzimir Bely (6):
>    linux: Allow to use custom packages for linux headers and image
>    rpi-sdimage: Change deployed image name.
>    rpi: Added raspios-bullseye configs
>    raspios: resize rootfs on first boot
>    CI: Switch rpi targets to bullseye
>    doc: Add notes about raspios-bullseye
>
>   RECIPE-API-CHANGELOG.md                       |  9 ++++
>   doc/user_manual.md                            |  8 +++
>   meta-isar/classes/rpi-sdimg.bbclass           |  2 +-
>   .../conf/distro/raspios-bullseye-64.list      |  9 ++++
>   meta-isar/conf/distro/raspios-bullseye.conf   | 24 +++++++++
>   meta-isar/conf/distro/raspios-bullseye.list   |  5 ++
>   meta-isar/conf/distro/raspios-configscript.sh | 50 +++++++++++++++++++
>   meta-isar/conf/local.conf.sample              |  4 ++
>   meta-isar/conf/machine/rpi-arm-v7.conf        |  7 +++
>   meta-isar/conf/machine/rpi-arm-v7l.conf       |  7 +++
>   meta-isar/conf/machine/rpi-arm.conf           |  7 +++
>   meta-isar/conf/machine/rpi-arm64-v8.conf      |  7 +++
>   meta-isar/conf/machine/rpi-common.conf        | 22 ++++++++
>   .../conf/multiconfig/rpi-arm-bullseye.conf    |  5 ++
>   .../conf/multiconfig/rpi-arm-v7-bullseye.conf |  5 ++
>   .../multiconfig/rpi-arm-v7l-bullseye.conf     |  5 ++
>   .../multiconfig/rpi-arm64-v8-bullseye.conf    |  5 ++
>   .../example-module/example-module.bb          |  4 ++
>   meta/classes/image.bbclass                    |  3 +-
>   .../linux-module/files/debian/control.tmpl    |  4 +-
>   meta/recipes-kernel/linux-module/module.inc   | 29 ++++++++---
>   meta/recipes-kernel/linux/linux-distro.bb     |  4 ++
>   testsuite/build_test/build_test.py            |  7 ++-
>   23 files changed, 220 insertions(+), 12 deletions(-)
>   create mode 100644 meta-isar/conf/distro/raspios-bullseye-64.list
>   create mode 100644 meta-isar/conf/distro/raspios-bullseye.conf
>   create mode 100644 meta-isar/conf/distro/raspios-bullseye.list
>   create mode 100644 meta-isar/conf/distro/raspios-configscript.sh
>   create mode 100644 meta-isar/conf/machine/rpi-arm-v7.conf
>   create mode 100644 meta-isar/conf/machine/rpi-arm-v7l.conf
>   create mode 100644 meta-isar/conf/machine/rpi-arm.conf
>   create mode 100644 meta-isar/conf/machine/rpi-arm64-v8.conf
>   create mode 100644 meta-isar/conf/machine/rpi-common.conf
>   create mode 100644 meta-isar/conf/multiconfig/rpi-arm-bullseye.conf
>   create mode 100644 meta-isar/conf/multiconfig/rpi-arm-v7-bullseye.conf
>   create mode 100644 meta-isar/conf/multiconfig/rpi-arm-v7l-bullseye.conf
>   create mode 100644 meta-isar/conf/multiconfig/rpi-arm64-v8-bullseye.conf
>
Applied to next, thanks.


      parent reply	other threads:[~2022-01-27 15:01 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-19  6:58 Uladzimir Bely
2022-01-19  6:58 ` [PATCH v3 1/6] linux: Allow to use custom packages for linux headers and image Uladzimir Bely
2022-01-19  6:58 ` [PATCH v3 2/6] rpi-sdimage: Change deployed image name Uladzimir Bely
2022-01-19  6:58 ` [PATCH v3 3/6] rpi: Added raspios-bullseye configs Uladzimir Bely
2022-01-19  6:59 ` [PATCH v3 4/6] raspios: resize rootfs on first boot Uladzimir Bely
2022-01-28 21:13   ` Henning Schild
2022-01-29  5:57     ` Uladzimir Bely
2022-01-31  7:43       ` Henning Schild
2022-01-19  6:59 ` [PATCH v3 5/6] CI: Switch rpi targets to bullseye Uladzimir Bely
2022-01-19  6:59 ` [PATCH v3 6/6] doc: Add notes about raspios-bullseye Uladzimir Bely
2022-01-27 15:01 ` 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=de1327ae-93b4-1b48-7570-6efe3425f8eb@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