Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <peter@korsgaard.com>
To: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Cc: buildroot@buildroot.org,
	 Giulio Benetti <giulio.benetti@benettiengineering.com>,
	 Jagan Teki <jagan@amarulasolutions.com>,
	 Javad Rahimi <javad321javad@gmail.com>,
	Marcin Niestroj <m.niestroj@grinn-global.com>,
	 Sergey Matyukevich <geomatsi@gmail.com>,
	 linux-amarula@amarulasolutions.com,
	 Julien Olivain <ju.o@free.fr>
Subject: Re: [Buildroot] [PATCH 1/1] boot/uboot: support System Control Processor (SCP) firmware blob
Date: Tue, 11 Feb 2025 17:48:15 +0100	[thread overview]
Message-ID: <87zfis2zsg.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <20250211093349.2153008-1-dario.binacchi@amarulasolutions.com> (Dario Binacchi's message of "Tue, 11 Feb 2025 10:33:49 +0100")

>>>>> "Dario" == Dario Binacchi <dario.binacchi@amarulasolutions.com> writes:

 > The commit 4bce3270d680 ("Config.in: timeout earlier when connecting to
 > download servers"), among other things, adds the connection timeout
 > parameter to the default scp command:

 > config BR2_SCP
 >        string "Secure copy (scp) command"
 >        default "scp -o ConnectTimeout=10"

 > Since the package/pkg-download.mk file exports this command using the
 > SCP variable:

 > export SCP := $(call qstrip,$(BR2_SCP))

 > and the U-Boot Makefile uses this variable as the path for the system
 > control processor (SCP) firmware blob:

 > cmd_binman = $(srctree)/tools/binman/binman $(if $(BINMAN_DEBUG),-D) \
 > 		$(foreach f,$(BINMAN_TOOLPATHS),--toolpath $(f)) \
 >                 --toolpath $(objtree)/tools \
 > 		$(if $(BINMAN_VERBOSE),-v$(BINMAN_VERBOSE)) \
 > 		build -u -d $(binman_dtb) -O . -m \
 > 		--allow-missing --fake-ext-blobs \
 > 		$(if $(BINMAN_ALLOW_MISSING),--ignore-missing) \
 > 		-I . -I $(srctree) -I $(srctree)/board/$(BOARDDIR) \
 > 		$(foreach f,$(of_list_dirs),-I $(f)) -a of-list=$(of_list) \
 > 		$(foreach f,$(BINMAN_INDIRS),-I $(f)) \
 > 		-a atf-bl31-path=${BL31} \
 > 		-a tee-os-path=${TEE} \
 > 		-a ti-dm-path=${TI_DM} \
 > 		-a opensbi-path=${OPENSBI} \
 > 		-a default-dt=$(default_dt) \
 > 		-a scp-path=$(SCP) \

 > the following error occurs:

 >   BINMAN  .binman_stamp
 > usage: binman [-h] [-B BUILD_DIR] [-D] [-H] [--tooldir TOOLDIR] [--toolpath TOOLPATH] [-T THREADS] [--test-section-timeout] [-v VERBOSITY] [-V]
 >               {build,bintool-docs,entry-docs,ls,extract,replace,sign,test,tool} ...
 > binman: error: unrecognized arguments: -o ConnectTimeout=10
 > make[2]: *** [Makefile:1126: .binman_stamp] Error 2

 > The issue was already present, as the scp command was being passed
 > instead of the path to the SCP firmware, but it is now detected due to
 > the compilation error.

Indeed.

 > Adding the BR2_TARGET_UBOOT_SCP_FIRMWARE option allows passing the
 > correct parameter to U-Boot, even if it is not set. This also requires
 > removing the SCP setting from BR2_TARGET_UBOOT_CUSTOM_MAKEOPTS for
 > configurations that previously set this variable explicitly.

 > Fixes: 4bce3270d680 ("Config.in: timeout earlier when connecting to download servers")
 > Suggested-by: Julien Olivain <ju.o@free.fr>
 > Co-Developed-by: Julien Olivain <ju.o@free.fr>
 > Signed-off-by: Julien Olivain <ju.o@free.fr>
 > Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>

So the real fix is presumably to stop globally exporting all these
variables in package/pkg-download.mk. I don't right away see why they
couldn't just be passed in $(PKG)_DL_ENV to the dl-wrapper instead.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  parent reply	other threads:[~2025-02-11 16:48 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-11  9:33 [Buildroot] [PATCH 1/1] boot/uboot: support System Control Processor (SCP) firmware blob Dario Binacchi
2025-02-11  9:46 ` Niklas Cassel
2025-02-11  9:52   ` Niklas Cassel via buildroot
2025-02-11  9:53   ` Dario Binacchi
2025-02-11 10:13     ` Niklas Cassel via buildroot
2025-02-11 22:25       ` Julien Olivain
2025-02-11 16:48 ` Peter Korsgaard [this message]
2025-02-13 20:33   ` Arnout Vandecappelle via buildroot

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=87zfis2zsg.fsf@dell.be.48ers.dk \
    --to=peter@korsgaard.com \
    --cc=buildroot@buildroot.org \
    --cc=dario.binacchi@amarulasolutions.com \
    --cc=geomatsi@gmail.com \
    --cc=giulio.benetti@benettiengineering.com \
    --cc=jagan@amarulasolutions.com \
    --cc=javad321javad@gmail.com \
    --cc=ju.o@free.fr \
    --cc=linux-amarula@amarulasolutions.com \
    --cc=m.niestroj@grinn-global.com \
    /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