Re: [U-Boot] [PATCH v3] libfdt: Introduce new ARCH_FIXUP_FDT option

2016-08-01 Thread Simon Glass
On 1 August 2016 at 00:37, Michal Simek wrote: > On 1.8.2016 03:03, Simon Glass wrote: >> On 28 July 2016 at 01:06, Michal Simek wrote: >>> Add new Kconfig option to disable arch_fixup_fdt() calls for cases where >>> U-Boot shouldn't update memory setup in DTB file. >>> One example of usage of th

Re: [U-Boot] [PATCH v3] libfdt: Introduce new ARCH_FIXUP_FDT option

2016-08-01 Thread Simon Glass
On 28 July 2016 at 01:06, Michal Simek wrote: > Add new Kconfig option to disable arch_fixup_fdt() calls for cases where > U-Boot shouldn't update memory setup in DTB file. > One example of usage of this option is to boot OS with different memory > setup than U-Boot use. > > Signed-off-by: Michal

Re: [U-Boot] [PATCH v3] libfdt: Introduce new ARCH_FIXUP_FDT option

2016-08-01 Thread Michal Simek
On 1.8.2016 03:03, Simon Glass wrote: > On 28 July 2016 at 01:06, Michal Simek wrote: >> Add new Kconfig option to disable arch_fixup_fdt() calls for cases where >> U-Boot shouldn't update memory setup in DTB file. >> One example of usage of this option is to boot OS with different memory >> setup

Re: [U-Boot] [PATCH v3] libfdt: Introduce new ARCH_FIXUP_FDT option

2016-07-31 Thread Simon Glass
On 31 July 2016 at 19:03, Simon Glass wrote: > > Acked-by: Simon Glass Acked-by: Simon Glass ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v3] libfdt: Introduce new ARCH_FIXUP_FDT option

2016-07-28 Thread Michal Simek
Add new Kconfig option to disable arch_fixup_fdt() calls for cases where U-Boot shouldn't update memory setup in DTB file. One example of usage of this option is to boot OS with different memory setup than U-Boot use. Signed-off-by: Michal Simek --- Changes in v3: - Fix MIPS macro Changes in v2