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

2016-07-31 Thread Michal Simek
On 1.8.2016 03:03, Simon Glass wrote: > Hi Michal, > > On 28 July 2016 at 01:08, Michal Simek wrote: >> On 28.7.2016 04:24, Simon Glass wrote: >>> Hi Michal, >>> >>> On 24 July 2016 at 20:07, Simon Glass wrote: On 15 July 2016 at 01:35, Michal Simek wrote: > Add new Kconfig option to d

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

2016-07-31 Thread Simon Glass
Hi Michal, On 28 July 2016 at 01:08, Michal Simek wrote: > On 28.7.2016 04:24, Simon Glass wrote: >> Hi Michal, >> >> On 24 July 2016 at 20:07, Simon Glass wrote: >>> On 15 July 2016 at 01:35, Michal Simek wrote: Add new Kconfig option to disable arch_fixup_fdt() calls for cases where

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

2016-07-28 Thread Michal Simek
On 28.7.2016 04:24, Simon Glass wrote: > Hi Michal, > > On 24 July 2016 at 20:07, Simon Glass wrote: >> On 15 July 2016 at 01:35, 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

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

2016-07-27 Thread Simon Glass
Hi Michal, On 24 July 2016 at 20:07, Simon Glass wrote: > On 15 July 2016 at 01:35, 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 diffe

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

2016-07-24 Thread Simon Glass
On 15 July 2016 at 01:35, 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 v2] libfdt: Introduce new ARCH_FIXUP_FDT option

2016-07-17 Thread Simon Glass
On 15 July 2016 at 01:35, 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

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

2016-07-15 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 v2: - Change logic to be possitive