Re: [U-Boot] [PATCH] rpi: Fix device tree path on ARM64

2017-01-09 Thread Stephen Warren
On 01/09/2017 06:34 AM, Tuomas Tynkkynen wrote: On Thu, 5 Jan 2017 16:44:43 -0700 Stephen Warren wrote: On 01/03/2017 03:39 AM, Tuomas Tynkkynen wrote: The directory structure of device tree files produced by the kernel's 'make dtbs_install' is different on ARM64, the RPi3 device tree file is

Re: [U-Boot] [PATCH] rpi: Fix device tree path on ARM64

2017-01-09 Thread Tuomas Tynkkynen
On Thu, 5 Jan 2017 16:44:43 -0700 Stephen Warren wrote: > On 01/03/2017 03:39 AM, Tuomas Tynkkynen wrote: > > The directory structure of device tree files produced by the kernel's > > 'make dtbs_install' is different on ARM64, the RPi3 device tree file is > > in a 'broadcom' subdirectory there. M

Re: [U-Boot] [PATCH] rpi: Fix device tree path on ARM64

2017-01-05 Thread Stephen Warren
On 01/03/2017 03:39 AM, Tuomas Tynkkynen wrote: The directory structure of device tree files produced by the kernel's 'make dtbs_install' is different on ARM64, the RPi3 device tree file is in a 'broadcom' subdirectory there. Make the set_fdtfile function account for this so that the distro boot

[U-Boot] [PATCH] rpi: Fix device tree path on ARM64

2017-01-03 Thread Tuomas Tynkkynen
The directory structure of device tree files produced by the kernel's 'make dtbs_install' is different on ARM64, the RPi3 device tree file is in a 'broadcom' subdirectory there. Make the set_fdtfile function account for this so that the distro boot scripts can locate the DTB file. Signed-off-by: T