All of lore.kernel.org
 help / color / mirror / Atom feed
* u-boot-imx master-next CI failure
@ 2022-11-08 12:00 Fabio Estevam
  2022-11-08 12:56 ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2022-11-08 12:00 UTC (permalink / raw)
  To: Tom Rini; +Cc: Stefano Babic, U-Boot-Denx

Hi Tom,

We are getting a build failure in the u-boot-imx master-next branch
and we are not sure where it is coming from:

https://source.denx.de/u-boot/custodians/u-boot-imx/-/jobs/525317

The i.MX boards are built, but at the end, the following error is seen:

ERROR: Job failed: exit code 100

Would you have any suggestions?

Thanks,

Fabio Estevam

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: u-boot-imx master-next CI failure
  2022-11-08 12:00 u-boot-imx master-next CI failure Fabio Estevam
@ 2022-11-08 12:56 ` Tom Rini
  2022-11-08 14:31   ` Fabio Estevam
  0 siblings, 1 reply; 6+ messages in thread
From: Tom Rini @ 2022-11-08 12:56 UTC (permalink / raw)
  To: Fabio Estevam, Simon Glass; +Cc: Stefano Babic, U-Boot-Denx

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

On Tue, Nov 08, 2022 at 09:00:21AM -0300, Fabio Estevam wrote:
> Hi Tom,
> 
> We are getting a build failure in the u-boot-imx master-next branch
> and we are not sure where it is coming from:
> 
> https://source.denx.de/u-boot/custodians/u-boot-imx/-/jobs/525317
> 
> The i.MX boards are built, but at the end, the following error is seen:
> 
> ERROR: Job failed: exit code 100
> 
> Would you have any suggestions?

The problem is with msc_sm2s_imx8mp. I figured this out by running a
./tools/moveconfig.py -s and waiting to see what got stuck and reading
the resulting /tmp/tmp.../.config file.

Simon, what can we do so that this kind of error is more easily visible
from buildman? Is there some flag the CI jobs are missing?

-- 
Tom

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: u-boot-imx master-next CI failure
  2022-11-08 12:56 ` Tom Rini
@ 2022-11-08 14:31   ` Fabio Estevam
  2022-11-08 14:34     ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2022-11-08 14:31 UTC (permalink / raw)
  To: Tom Rini; +Cc: Simon Glass, Stefano Babic, U-Boot-Denx, Martyn Welch

Hi Tom,

On Tue, Nov 8, 2022 at 9:56 AM Tom Rini <trini@konsulko.com> wrote:

> The problem is with msc_sm2s_imx8mp. I figured this out by running a
> ./tools/moveconfig.py -s and waiting to see what got stuck and reading
> the resulting /tmp/tmp.../.config file.

That's good information. Thanks for narrowing it down to msc_sm2s_imx8mp.

What is the msc_sm2s_imx8mp config option that causes the problem?

Looking at https://source.denx.de/u-boot/custodians/u-boot-imx/-/commit/b6b94d8530f6c29f9b0ed9f25aeb8aa6569573e8
I am not sure what can cause the failure.

Any ideas?

Thanks

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: u-boot-imx master-next CI failure
  2022-11-08 14:31   ` Fabio Estevam
@ 2022-11-08 14:34     ` Tom Rini
  2022-11-08 14:36       ` Fabio Estevam
  0 siblings, 1 reply; 6+ messages in thread
From: Tom Rini @ 2022-11-08 14:34 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Simon Glass, Stefano Babic, U-Boot-Denx, Martyn Welch

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

On Tue, Nov 08, 2022 at 11:31:51AM -0300, Fabio Estevam wrote:
> Hi Tom,
> 
> On Tue, Nov 8, 2022 at 9:56 AM Tom Rini <trini@konsulko.com> wrote:
> 
> > The problem is with msc_sm2s_imx8mp. I figured this out by running a
> > ./tools/moveconfig.py -s and waiting to see what got stuck and reading
> > the resulting /tmp/tmp.../.config file.
> 
> That's good information. Thanks for narrowing it down to msc_sm2s_imx8mp.
> 
> What is the msc_sm2s_imx8mp config option that causes the problem?
> 
> Looking at https://source.denx.de/u-boot/custodians/u-boot-imx/-/commit/b6b94d8530f6c29f9b0ed9f25aeb8aa6569573e8
> I am not sure what can cause the failure.
> 
> Any ideas?

Yes, it's CONFIG_SYS_TEXT_BASE -> CONFIG_TEXT BASE and I found that just
by doing 'make msc_sm2s_imx8mp_config oldconfig' :)

-- 
Tom

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: u-boot-imx master-next CI failure
  2022-11-08 14:34     ` Tom Rini
@ 2022-11-08 14:36       ` Fabio Estevam
  2022-11-08 14:44         ` Stefano Babic
  0 siblings, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2022-11-08 14:36 UTC (permalink / raw)
  To: Tom Rini; +Cc: Simon Glass, Stefano Babic, U-Boot-Denx, Martyn Welch

Hi Tom,

On Tue, Nov 8, 2022 at 11:34 AM Tom Rini <trini@konsulko.com> wrote:

> Yes, it's CONFIG_SYS_TEXT_BASE -> CONFIG_TEXT BASE and I found that just
> by doing 'make msc_sm2s_imx8mp_config oldconfig' :)

Excellent, thanks for the help!

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: u-boot-imx master-next CI failure
  2022-11-08 14:36       ` Fabio Estevam
@ 2022-11-08 14:44         ` Stefano Babic
  0 siblings, 0 replies; 6+ messages in thread
From: Stefano Babic @ 2022-11-08 14:44 UTC (permalink / raw)
  To: Fabio Estevam, Tom Rini
  Cc: Simon Glass, Stefano Babic, U-Boot-Denx, Martyn Welch

Hi Tom,

On 08.11.22 15:36, Fabio Estevam wrote:
> Hi Tom,
> 
> On Tue, Nov 8, 2022 at 11:34 AM Tom Rini <trini@konsulko.com> wrote:
> 
>> Yes, it's CONFIG_SYS_TEXT_BASE -> CONFIG_TEXT BASE and I found that just
>> by doing 'make msc_sm2s_imx8mp_config oldconfig' :)
> 
> Excellent, thanks for the help!

Many thanks, we were puzzled !


Stefano


-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, 82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de
=====================================================================


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-11-08 14:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-08 12:00 u-boot-imx master-next CI failure Fabio Estevam
2022-11-08 12:56 ` Tom Rini
2022-11-08 14:31   ` Fabio Estevam
2022-11-08 14:34     ` Tom Rini
2022-11-08 14:36       ` Fabio Estevam
2022-11-08 14:44         ` Stefano Babic

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.