Re: [U-Boot] [PATCH] dts: re-write dts/Makefile more simply with Kbuild

2014-02-18 Thread Masahiro Yamada
Hello Simon, - dts/dt.dtb This is a temporary file, probably deleted during the build. No. It is a temporary file, but it must not be deleted during the build. Otherwise, dts/dt.dtb will be re-generated at every build even when it shouldn't. I'm not even sure if it is created when

Re: [U-Boot] [PATCH] dts: re-write dts/Makefile more simply with Kbuild

2014-02-15 Thread Simon Glass
Hi Masahiro, On 4 February 2014 03:00, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hello Simon, I saw the patch you posted http://patchwork.ozlabs.org/patch/315846/ and I understood what you want to do. (But I don't like to search similar device trees with file name prefixes.) Do

Re: [U-Boot] [PATCH] dts: re-write dts/Makefile more simply with Kbuild

2014-02-04 Thread Masahiro Yamada
Hello Simon, I saw the patch you posted http://patchwork.ozlabs.org/patch/315846/ and I understood what you want to do. (But I don't like to search similar device trees with file name prefixes.) Do you like ARM Linux style? dtb-$(CONFIG_EXYNOS5) += exynos5250-arndale.dtb \

Re: [U-Boot] [PATCH] dts: re-write dts/Makefile more simply with Kbuild

2014-01-31 Thread Simon Glass
Hi Masahiro, On 30 January 2014 02:17, Masahiro Yamada yamad...@jp.panasonic.com wrote: Useful rules in scripts/Makefile.lib allows us to easily generate a device tree blob and wrap it in assembly code. We do not need to parse a linker script to get output format and arch. Signed-off-by:

[U-Boot] [PATCH] dts: re-write dts/Makefile more simply with Kbuild

2014-01-30 Thread Masahiro Yamada
Useful rules in scripts/Makefile.lib allows us to easily generate a device tree blob and wrap it in assembly code. We do not need to parse a linker script to get output format and arch. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- This patch uses my Kbuild series as a