From: Mattijs Korpershoek <mkorpershoek@baylibre.com>
To: Simon Glass <sjg@chromium.org>,
U-Boot Mailing List <u-boot@lists.denx.de>
Cc: "Tom Rini" <trini@konsulko.com>,
"Jagan Teki" <jagan@amarulasolutions.com>,
"Andre Przywara" <andre.przywara@arm.com>,
"AKASHI Takahiro" <akashi.tkhro@gmail.com>,
"Alper Nebi Yasak" <alpernebiyasak@gmail.com>,
"Andrew Davis" <afd@ti.com>, "Bin Meng" <bmeng@tinylab.org>,
"Bryan Brattlof" <bb@ti.com>,
"Caleb Connolly" <caleb.connolly@linaro.org>,
"Csókás Bence" <csokas.bence@prolan.hu>,
"Dragan Simic" <dsimic@manjaro.org>,
"Eddie James" <eajames@linux.ibm.com>,
"Hans de Goede" <hdegoede@redhat.com>,
"Heinrich Schuchardt" <xypron.glpk@gmx.de>,
"Ilias Apalodimas" <ilias.apalodimas@linaro.org>,
"Janne Grunau" <j@jannau.net>,
"Jesse Taube" <mr.bossman075@gmail.com>,
"Joe Hershberger" <joe.hershberger@ni.com>,
"Johan Jonker" <jbx6244@gmail.com>,
"Julien Masson" <jmasson@baylibre.com>,
"Kever Yang" <kever.yang@rock-chips.com>,
"Leon M. Busch-George" <leon@georgemail.eu>,
"Marek Vasut" <marek.vasut+renesas@mailbox.org>,
"Marek Vasut" <marex@denx.de>,
"Michal Simek" <michal.simek@amd.com>,
"Nam Cao" <namcao@linutronix.de>,
"Peter Robinson" <pbrobinson@gmail.com>,
"Quentin Schulz" <quentin.schulz@cherry.de>,
"Ramon Fried" <rfried.dev@gmail.com>,
"Rasmus Villemoes" <rasmus.villemoes@prevas.dk>,
"Rayagonda Kokatanur" <rayagonda.kokatanur@broadcom.com>,
"Stefan Roese" <sr@denx.de>, "Sumit Garg" <sumit.garg@linaro.org>,
"Thomas Weißschuh" <thomas.weissschuh@linutronix.de>,
"Tony Dinh" <mibodhi@gmail.com>,
"Venkatesh Yadav Abbarapu" <venkatesh.abbarapu@amd.com>
Subject: Re: [PATCH v2 0/8] bootstd: sunxi: Migrate to standard boot
Date: Tue, 01 Oct 2024 14:07:21 +0200 [thread overview]
Message-ID: <87cykkc9hi.fsf@baylibre.com> (raw)
In-Reply-To: <CAFLszTjrxJA_ZmU-Uptb=kYJcvaXwCwNHg0MeGVW=DNUhPoSaw@mail.gmail.com>
Hi Simon,
On mar., oct. 01, 2024 at 05:18, Simon Glass <sjg@chromium.org> wrote:
> Hi,
>
> On Fri, 23 Aug 2024 at 14:48, Simon Glass <sjg@chromium.org> wrote:
>>
>> This series attempts to migrate all sunxi boards to use standard boot,
>> along with a text environment.
>>
>> Changes in v2:
>> - Add new patch to resolve BOOTSTD->BLK recursion with Kconfig
>> - Put the FEL bootmeth before all other global bootmeths
>> - Convert the other DISTRO_DEFAULTS in the Kconfig too
>> - Keep BOOTCMD_SUNXI_COMPAT
>> - Keep bootcmd_sunxi_compat if OLD_SUNXI_KERNEL_COMPAT is enabled
>>
>> Simon Glass (8):
>> blk: Make functions available unconditionally
>> bootstd: Avoid calling unavailable block functions
>> bootstd: Avoid depending on BLK
>> sunxi: Add a bootmeth for FEL
>> sunxi: Move to bootstd
>> sunxi: Drop old distro boot variables
>> env: Provide a work-around for unquoting fdtfile
>> sunxi: Move to text environment
>>
>> Makefile | 1 +
>> arch/arm/Kconfig | 10 +-
>> board/sunxi/sunxi.env | 152 +++++++++++
>> boot/Kconfig | 16 +-
>> boot/Makefile | 1 +
>> boot/bootdev-uclass.c | 3 +
>> boot/bootmeth_fel.c | 81 ++++++
>> .../gardena-smart-gateway-mt7688_defconfig | 1 +
>> doc/usage/environment.rst | 12 +
>> include/blk.h | 9 +-
>> include/configs/sunxi-common.h | 238 ------------------
>> 11 files changed, 278 insertions(+), 246 deletions(-)
>> create mode 100644 board/sunxi/sunxi.env
>> create mode 100644 boot/bootmeth_fel.c
>>
>> --
>> 2.34.1
>>
>
> I'm just checking on this series. Are there any comments, or can it be applied?
Quentin mentioned a typo in patch 3/8, see:
https://lore.kernel.org/all/1f963aa8-948a-4657-9f1b-a3bc38df4714@cherry.de/
Can you make sure it gets removed when being applied ?
>
> Regards,
> Simon
next prev parent reply other threads:[~2024-10-01 13:19 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-23 20:48 [PATCH v2 0/8] bootstd: sunxi: Migrate to standard boot Simon Glass
2024-08-23 20:48 ` [PATCH v2 1/8] blk: Make functions available unconditionally Simon Glass
2024-08-23 20:48 ` [PATCH v2 2/8] bootstd: Avoid calling unavailable block functions Simon Glass
2024-08-23 20:48 ` [PATCH v2 3/8] bootstd: Avoid depending on BLK Simon Glass
2024-08-26 15:58 ` Quentin Schulz
2024-08-23 20:48 ` [PATCH v2 4/8] sunxi: Add a bootmeth for FEL Simon Glass
2024-08-23 20:48 ` [PATCH v2 5/8] sunxi: Move to bootstd Simon Glass
2024-08-23 20:48 ` [PATCH v2 6/8] sunxi: Drop old distro boot variables Simon Glass
2024-08-23 20:48 ` [PATCH v2 7/8] env: Provide a work-around for unquoting fdtfile Simon Glass
2024-08-26 15:56 ` Quentin Schulz
2024-09-01 20:09 ` Simon Glass
2024-08-23 20:48 ` [PATCH v2 8/8] sunxi: Move to text environment Simon Glass
2024-10-01 11:18 ` [PATCH v2 0/8] bootstd: sunxi: Migrate to standard boot Simon Glass
2024-10-01 12:07 ` Mattijs Korpershoek [this message]
2024-10-01 12:23 ` Quentin Schulz
2024-10-01 13:06 ` Simon Glass
2024-10-01 12:10 ` Andre Przywara
2024-10-01 17:15 ` Heinrich Schuchardt
2024-10-01 17:29 ` Heinrich Schuchardt
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=87cykkc9hi.fsf@baylibre.com \
--to=mkorpershoek@baylibre.com \
--cc=afd@ti.com \
--cc=akashi.tkhro@gmail.com \
--cc=alpernebiyasak@gmail.com \
--cc=andre.przywara@arm.com \
--cc=bb@ti.com \
--cc=bmeng@tinylab.org \
--cc=caleb.connolly@linaro.org \
--cc=csokas.bence@prolan.hu \
--cc=dsimic@manjaro.org \
--cc=eajames@linux.ibm.com \
--cc=hdegoede@redhat.com \
--cc=ilias.apalodimas@linaro.org \
--cc=j@jannau.net \
--cc=jagan@amarulasolutions.com \
--cc=jbx6244@gmail.com \
--cc=jmasson@baylibre.com \
--cc=joe.hershberger@ni.com \
--cc=kever.yang@rock-chips.com \
--cc=leon@georgemail.eu \
--cc=marek.vasut+renesas@mailbox.org \
--cc=marex@denx.de \
--cc=mibodhi@gmail.com \
--cc=michal.simek@amd.com \
--cc=mr.bossman075@gmail.com \
--cc=namcao@linutronix.de \
--cc=pbrobinson@gmail.com \
--cc=quentin.schulz@cherry.de \
--cc=rasmus.villemoes@prevas.dk \
--cc=rayagonda.kokatanur@broadcom.com \
--cc=rfried.dev@gmail.com \
--cc=sjg@chromium.org \
--cc=sr@denx.de \
--cc=sumit.garg@linaro.org \
--cc=thomas.weissschuh@linutronix.de \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=venkatesh.abbarapu@amd.com \
--cc=xypron.glpk@gmx.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