All of lore.kernel.org
 help / color / mirror / Atom feed
* binman: u-boot-dtb vs. filename
@ 2020-11-21 14:28 Jan Kiszka
  2020-11-21 23:08 ` Simon Glass
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Kiszka @ 2020-11-21 14:28 UTC (permalink / raw)
  To: u-boot

Hi,

I stumbled over README.entries claiming

Entry: u-boot-dtb: U-Boot device tree
-------------------------------------

Properties / Entry arguments:
    - filename: Filename of u-boot.dtb (default 'u-boot.dtb')


However,

	u-boot-dtb {
		filename = "foo.dtb"
	}

only pulls u-boot.dtb. Tried to fix that but I failed to understand the
binman logic. Maybe the documentation (also that of
u-boot-dtb-with-ucode) was just not supposed to refer to filename.

Using 'blob' now, like other boards.

Jan

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

* binman: u-boot-dtb vs. filename
  2020-11-21 14:28 binman: u-boot-dtb vs. filename Jan Kiszka
@ 2020-11-21 23:08 ` Simon Glass
  2020-11-22 14:23   ` Jan Kiszka
  0 siblings, 1 reply; 3+ messages in thread
From: Simon Glass @ 2020-11-21 23:08 UTC (permalink / raw)
  To: u-boot

Hi Jan,

On Sat, 21 Nov 2020 at 07:28, Jan Kiszka <jan.kiszka@web.de> wrote:
>
> Hi,
>
> I stumbled over README.entries claiming
>
> Entry: u-boot-dtb: U-Boot device tree
> -------------------------------------
>
> Properties / Entry arguments:
>     - filename: Filename of u-boot.dtb (default 'u-boot.dtb')
>
>
> However,
>
>         u-boot-dtb {
>                 filename = "foo.dtb"
>         }
>
> only pulls u-boot.dtb. Tried to fix that but I failed to understand the
> binman logic. Maybe the documentation (also that of
> u-boot-dtb-with-ucode) was just not supposed to refer to filename.
>
> Using 'blob' now, like other boards.

This was by design, since it is trying to pick up a particular .dtb
file, but as you point out the docs do not match. I wonder if using
'blob-dtb' as the entry type would work?

The reason is that Entry_u_boot_dtb has a GetDefaultFilename()
function and that ignores the filename property.

I suspect that changing it to:

    def GetDefaultFilename(self):
       return self._filename or 'u-boot.dtb'

might work too. I will have a think about which fix is best and see if
I can add a test to ftest.py

Regards,
Simon

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

* binman: u-boot-dtb vs. filename
  2020-11-21 23:08 ` Simon Glass
@ 2020-11-22 14:23   ` Jan Kiszka
  0 siblings, 0 replies; 3+ messages in thread
From: Jan Kiszka @ 2020-11-22 14:23 UTC (permalink / raw)
  To: u-boot

On 22.11.20 00:08, Simon Glass wrote:
> Hi Jan,
>
> On Sat, 21 Nov 2020 at 07:28, Jan Kiszka <jan.kiszka@web.de> wrote:
>>
>> Hi,
>>
>> I stumbled over README.entries claiming
>>
>> Entry: u-boot-dtb: U-Boot device tree
>> -------------------------------------
>>
>> Properties / Entry arguments:
>>     - filename: Filename of u-boot.dtb (default 'u-boot.dtb')
>>
>>
>> However,
>>
>>         u-boot-dtb {
>>                 filename = "foo.dtb"
>>         }
>>
>> only pulls u-boot.dtb. Tried to fix that but I failed to understand the
>> binman logic. Maybe the documentation (also that of
>> u-boot-dtb-with-ucode) was just not supposed to refer to filename.
>>
>> Using 'blob' now, like other boards.
>
> This was by design, since it is trying to pick up a particular .dtb
> file, but as you point out the docs do not match. I wonder if using
> 'blob-dtb' as the entry type would work?
>

blob-dtb talks about its content being "managed by the
'state' module", whatever that is. Thus it refuses to take a filename.

FWIW, here is the configuration I was trying this on:
https://github.com/siemens/u-boot/commit/6b61fbee0ec122ef054e0ee975a20e6888061823#diff-340d17a0f1087ea07fb2e85ae38c1f265d1b4ad2d1ae11a53a8ce0be8ec51c16R27.
Open for any suggestions to express this even better.

Jan

> The reason is that Entry_u_boot_dtb has a GetDefaultFilename()
> function and that ignores the filename property.
>
> I suspect that changing it to:
>
>     def GetDefaultFilename(self):
>        return self._filename or 'u-boot.dtb'
>
> might work too. I will have a think about which fix is best and see if
> I can add a test to ftest.py
>
> Regards,
> Simon
>

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

end of thread, other threads:[~2020-11-22 14:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-21 14:28 binman: u-boot-dtb vs. filename Jan Kiszka
2020-11-21 23:08 ` Simon Glass
2020-11-22 14:23   ` Jan Kiszka

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.