U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: Simon Glass <sjg@chromium.org>
Cc: U-Boot Mailing List <u-boot@lists.denx.de>,
	Baruch Siach <baruch@tkos.co.il>,
	Caleb Connolly <caleb.connolly@linaro.org>,
	Christian Marangi <ansuelsmth@gmail.com>,
	Dragan Simic <dsimic@manjaro.org>,
	Guillaume La Roque <glaroque@baylibre.com>,
	Heinrich Schuchardt <xypron.glpk@gmx.de>,
	Igor Opaniuk <igor.opaniuk@gmail.com>,
	Ilias Apalodimas <ilias.apalodimas@linaro.org>,
	Jerome Forissier <jerome.forissier@linaro.org>,
	Julien Masson <jmasson@baylibre.com>,
	Julius Lehmann <lehmanju@devpi.de>,
	Marek Vasut <marek.vasut+renesas@mailbox.org>,
	Marek Vasut <marex@denx.de>,
	Martyn Welch <martyn.welch@collabora.com>,
	Mattijs Korpershoek <mkorpershoek@baylibre.com>,
	Maximilian Brune <maximilian.brune@9elements.com>,
	Moritz Fischer <moritzf@google.com>,
	Nam Cao <namcao@linutronix.de>,
	Patrick Rudolph <patrick.rudolph@9elements.com>,
	Peter Robinson <pbrobinson@gmail.com>,
	Quentin Schulz <quentin.schulz@cherry.de>,
	Richard Weinberger <richard@nod.at>, Roger Knecht <rknecht@pm.me>,
	Stephen Warren <swarren@nvidia.com>,
	Stephen Warren <swarren@wwwdotorg.org>,
	Sughosh Ganu <sughosh.ganu@linaro.org>
Subject: Re: [PATCH 00/17] bootstd: Useability improvements
Date: Tue, 1 Apr 2025 11:01:12 -0600	[thread overview]
Message-ID: <20250401170112.GJ5495@bill-the-cat> (raw)
In-Reply-To: <CAFLszTio55sM+TUyV429Fv8vXv-AkE-HWS4ROC_qOZK=UdjBMw@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1442 bytes --]

On Wed, Apr 02, 2025 at 04:53:32AM +1300, Simon Glass wrote:
> Hi Tom,
> 
> On Tue, 1 Apr 2025 at 06:40, Tom Rini <trini@konsulko.com> wrote:
> >
> > On Wed, Mar 19, 2025 at 03:37:54PM +0100, Simon Glass wrote:
> >
> > > This series collects together some bootstd improvements:
> > >
> > > - Improve iteration when there are a lot of devices
> > > - Add a test image for Ubuntu (to compliment Fedora)
> > > - Improve the naming of USB devices and bootdevs
> > > - Add a new command to set the bootdev order
> > > - Add a little more debugging
> > > - Use an abuf when dealing with allocate files
> > > - A few other minor things in bootstd
> > >
> > > Most of these issues were found when adding the new test image and more
> > > USB devices to sandbox.
> >
> > This isn't based on mainline, either:
> > > base-commit: 569681e993486b830035064f23ec87bcd70795d1
> > > branch: schc
> >
> > And I don't know why.
> 
> I am sending patches in the hope that people can review them and that
> some of them may make it into your tree. I'm doing everything I can to
> minimise the differences and I would encourage you to do the same.

I am not merging any of your patches that are not based on master or
next. You need to post patches based on master or next and not your
personal tree. Lots of people have personal trees and you're the only
person who does not follow the normal expected behavior here.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

      reply	other threads:[~2025-04-01 17:01 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-19 14:37 [PATCH 00/17] bootstd: Useability improvements Simon Glass
2025-03-19 14:37 ` [PATCH 01/17] fs: boot: Update fs_read_alloc() to use abuf Simon Glass
2025-03-31 17:42   ` Tom Rini
2025-04-01 15:46     ` Simon Glass
2025-04-01 16:50       ` Tom Rini
2025-05-01 12:07         ` Simon Glass
2025-03-19 14:37 ` [PATCH 02/17] fs: boot: Update fs_load_alloc() " Simon Glass
2025-03-19 14:37 ` [PATCH 03/17] fs: boot: Update bootmeth_alloc_other() " Simon Glass
2025-03-19 14:37 ` [PATCH 04/17] bootstd: Add more debugging to bootmeth_efi Simon Glass
2025-03-19 14:37 ` [PATCH 05/17] bootstd: Add more debugging to bootmeth_extlinux Simon Glass
2025-03-19 14:38 ` [PATCH 06/17] bootstd: Try all bootmeths on the final partition Simon Glass
2025-03-31 17:41   ` Tom Rini
2025-03-19 14:38 ` [PATCH 07/17] bootstd: Fully complete iteration of a uclass Simon Glass
2025-03-31 17:41   ` Tom Rini
2025-03-19 14:38 ` [PATCH 08/17] test/py: Split out core of Fedora image into a new function Simon Glass
2025-03-19 14:38 ` [PATCH 09/17] test/py: Add a test image for Ubuntu Simon Glass
2025-03-19 14:52   ` Tom Rini
2025-03-19 15:04     ` Simon Glass
2025-03-19 15:35       ` Tom Rini
2025-03-20  3:41         ` Simon Glass
2025-03-30 14:45           ` Tom Rini
2025-04-01 15:49             ` Simon Glass
2025-04-01 16:48               ` Tom Rini
2025-04-01 17:55                 ` Simon Glass
2025-04-11 19:13                   ` Tom Rini
2025-04-12 12:45                     ` Simon Glass
2025-04-12 18:41                       ` Tom Rini
2025-03-19 14:38 ` [PATCH 10/17] usb: Use more useful names for block devices Simon Glass
2025-03-19 14:38 ` [PATCH 11/17] sandbox: Use a unique name for each USB controller Simon Glass
2025-03-19 14:38 ` [PATCH 12/17] bootstd: Tweak scanning with labels Simon Glass
2025-03-19 14:38 ` [PATCH 13/17] bootstd: Tidy up a nested CONFIG_IS_ENABLED(BOOTSTD) Simon Glass
2025-03-19 14:38 ` [PATCH 14/17] bootstd: Provide a command to select the bootdev order Simon Glass
2025-03-19 14:38 ` [PATCH 15/17] bootstd: Correct the comment for bootmeth_set_order() Simon Glass
2025-03-19 14:38 ` [PATCH 16/17] bootstd: Expand debugging in bootdev_find_in_blk() Simon Glass
2025-03-19 14:38 ` [PATCH 17/17] bootstd: Mention FS state in bootmeth_read_bootflow() Simon Glass
2025-03-31 17:40 ` [PATCH 00/17] bootstd: Useability improvements Tom Rini
2025-04-01 15:53   ` Simon Glass
2025-04-01 17:01     ` Tom Rini [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=20250401170112.GJ5495@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=ansuelsmth@gmail.com \
    --cc=baruch@tkos.co.il \
    --cc=caleb.connolly@linaro.org \
    --cc=dsimic@manjaro.org \
    --cc=glaroque@baylibre.com \
    --cc=igor.opaniuk@gmail.com \
    --cc=ilias.apalodimas@linaro.org \
    --cc=jerome.forissier@linaro.org \
    --cc=jmasson@baylibre.com \
    --cc=lehmanju@devpi.de \
    --cc=marek.vasut+renesas@mailbox.org \
    --cc=marex@denx.de \
    --cc=martyn.welch@collabora.com \
    --cc=maximilian.brune@9elements.com \
    --cc=mkorpershoek@baylibre.com \
    --cc=moritzf@google.com \
    --cc=namcao@linutronix.de \
    --cc=patrick.rudolph@9elements.com \
    --cc=pbrobinson@gmail.com \
    --cc=quentin.schulz@cherry.de \
    --cc=richard@nod.at \
    --cc=rknecht@pm.me \
    --cc=sjg@chromium.org \
    --cc=sughosh.ganu@linaro.org \
    --cc=swarren@nvidia.com \
    --cc=swarren@wwwdotorg.org \
    --cc=u-boot@lists.denx.de \
    --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