[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-discuss] Generating device tree syntax file from QEMU dtb
From: |
Peter Maydell |
Subject: |
Re: [Qemu-discuss] Generating device tree syntax file from QEMU dtb |
Date: |
Mon, 6 Feb 2017 12:01:49 +0000 |
On 6 February 2017 at 11:45, Hrishikesh Murukkathampoondi
<address@hidden> wrote:
> dtc gives me this error when trying to convert the blob to dts.
>
> Zeppelin:arm hrishi$ dtc/dtc virt.dtb -I dtb -o virt.dts -I dts
> Error: virt.dtb:1.1-2 syntax error
> FATAL ERROR: Unable to parse input tree
You've specified the input format twice (with two -I options)
and not specified the output format. You probably meant
-O dts.
thanks
-- PMM