All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mattijs Korpershoek <mkorpershoek@baylibre.com>
To: Jerome Forissier <jerome.forissier@linaro.org>, u-boot@lists.denx.de
Cc: Ilias Apalodimas <ilias.apalodimas@linaro.org>,
	Jerome Forissier <jerome.forissier@linaro.org>,
	Tom Rini <trini@konsulko.com>, Simon Glass <sjg@chromium.org>,
	Heinrich Schuchardt <xypron.glpk@gmx.de>,
	Ibai Erkiaga <ibai.erkiaga-elorza@amd.com>,
	Michal Simek <michal.simek@amd.com>,
	Caleb Connolly <caleb.connolly@linaro.org>,
	Sebastian Reichel <sebastian.reichel@collabora.com>,
	Dmitry Rokosov <ddrokosov@salutedevices.com>
Subject: Re: [PATCH v4 12/14] cmd: add spawn and wait commands
Date: Mon, 31 Mar 2025 09:54:35 +0200	[thread overview]
Message-ID: <87msd1prd0.fsf@baylibre.com> (raw)
In-Reply-To: <20250318104659.1114340-13-jerome.forissier@linaro.org>

Hi Jerome,

Thank you for the patch.

On mar., mars 18, 2025 at 11:46, Jerome Forissier <jerome.forissier@linaro.org> wrote:

[...]

>  
>  obj-$(CONFIG_HUSH_SELECTABLE) += cli.o
>  
> +obj-$(CONFIG_CMD_SPAWN) += spawn.o
> +
>  obj-$(CONFIG_ARM) += arm/
>  obj-$(CONFIG_RISCV) += riscv/
>  obj-$(CONFIG_SANDBOX) += sandbox/
> diff --git a/cmd/spawn.c b/cmd/spawn.c
> new file mode 100644
> index 00000000000..f7a9f225f93
> --- /dev/null
> +++ b/cmd/spawn.c
> @@ -0,0 +1,188 @@
> +// SPDX-License-Identifier: GPL-2.0+
> +/*
> + * Copyright (c) 2011 The Chromium OS Authors.
> + */

Nitpick: Is this the correct copyright? For the test code in the next
patch you used

  * Copyright 2025, Linaro Ltd.

Besides that:

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

[...]

> +

  parent reply	other threads:[~2025-03-31  7:54 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-18 10:46 [PATCH v4 00/14] Uthreads Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 01/14] arch: introduce initjmp() and Kconfig symbol HAVE_INITJMP Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 02/14] arm: add initjmp() Jerome Forissier
2025-03-18 11:15   ` Ilias Apalodimas
2025-03-18 12:28   ` Fabio Estevam
2025-03-18 12:51     ` Jerome Forissier
2025-03-18 12:57       ` Fabio Estevam
2025-03-18 10:46 ` [PATCH v4 03/14] riscv: " Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 04/14] sandbox: " Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 05/14] test: lib: add initjmp() test Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 06/14] uthread: add cooperative multi-tasking interface Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 07/14] cyclic: invoke uthread_schedule() from schedule() Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 08/14] lib: time: hook uthread_schedule() into udelay() Jerome Forissier
2025-03-18 11:16   ` Ilias Apalodimas
2025-03-18 10:46 ` [PATCH v4 09/14] test: lib: add uthread test Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 10/14] dm: usb: move bus initialization into new static function usb_init_bus() Jerome Forissier
2025-03-18 12:20   ` Marek Vasut
2025-03-19 10:43     ` Jerome Forissier
2025-03-19 15:03       ` Simon Glass
2025-03-18 10:46 ` [PATCH v4 11/14] dm: usb: initialize and scan multiple buses simultaneously with uthread Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 12/14] cmd: add spawn and wait commands Jerome Forissier
2025-03-18 11:16   ` Ilias Apalodimas
2025-03-31  7:54   ` Mattijs Korpershoek [this message]
2025-03-31  9:21     ` Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 13/14] test: cmd: add test for " Jerome Forissier
2025-03-18 10:46 ` [PATCH v4 14/14] MAINTAINERS: add UTHREAD Jerome Forissier

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=87msd1prd0.fsf@baylibre.com \
    --to=mkorpershoek@baylibre.com \
    --cc=caleb.connolly@linaro.org \
    --cc=ddrokosov@salutedevices.com \
    --cc=ibai.erkiaga-elorza@amd.com \
    --cc=ilias.apalodimas@linaro.org \
    --cc=jerome.forissier@linaro.org \
    --cc=michal.simek@amd.com \
    --cc=sebastian.reichel@collabora.com \
    --cc=sjg@chromium.org \
    --cc=trini@konsulko.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.