[SLOF] [PATCH slof v6 2/6] fdt: Fix version and add a word for FDT header size

Alexey Kardashevskiy aik at ozlabs.ru
Mon Nov 6 13:43:12 AEDT 2017


On 06/11/17 03:18, Greg Kurz wrote:
> On Tue, 24 Oct 2017 12:31:49 +1100
> Alexey Kardashevskiy <aik at ozlabs.ru> wrote:
> 
>> This fixes the version handling in fdt-init. It only matters
>> a little for the fdt-debug==1 case though.
>>
>> This defines /fdth word for the FDT header size; this will be used
>> in the next patch.
>>
>> Signed-off-by: Alexey Kardashevskiy <aik at ozlabs.ru>
>> ---
> 
> Reviewed-by: Greg Kurz <groug at kaod.org>

Thanks! Slowly we are getting there :)


> 
>>  board-qemu/slof/fdt.fs | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/board-qemu/slof/fdt.fs b/board-qemu/slof/fdt.fs
>> index 851645e..8e8921f 100644
>> --- a/board-qemu/slof/fdt.fs
>> +++ b/board-qemu/slof/fdt.fs
>> @@ -27,7 +27,7 @@ struct
>>    4 field >fdth_boot_cpu
>>    4 field >fdth_string_size
>>    4 field >fdth_struct_size
>> -drop
>> +constant /fdth
>>  
>>  h# d00dfeed constant OF_DT_HEADER
>>  h#        1 constant OF_DT_BEGIN_NODE
>> @@ -69,7 +69,7 @@ fdt-start fdt-init
>>          dup >fdth_version l@ 3 >= IF
>>              ."  strings size     : 0x" dup >fdth_string_size l@ . cr
>>          THEN
>> -        dup >fdth_version l@ 17 >= IF
>> +        dup >fdth_version l@ 11 >= IF
>>              ."  struct size      : 0x" dup >fdth_struct_size l@ . cr
>>          THEN
>>      THEN
> 


-- 
Alexey


More information about the SLOF mailing list