From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Wed, 8 Mar 2017 14:01:15 -0700 Subject: [U-Boot] [PATCH 12/17] Makefile: add rules to generate SPL FIT images In-Reply-To: <1488335129-12363-13-git-send-email-andre.przywara@arm.com> References: <1488335129-12363-1-git-send-email-andre.przywara@arm.com> <1488335129-12363-13-git-send-email-andre.przywara@arm.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 28 February 2017 at 19:25, Andre Przywara wrote: > Some platforms require more complex U-Boot images than we can easily > generate via the mkimage command line, for instance to load additional > image files. > Introduce a CONFIG_SPL_FIT_SOURCE and CONFIG_SPL_FIT_GENERATOR symbol, > which can either hold an .its source file describing the image layout, > or, in the second case, a generator tool (script) to create such > a source file. This script gets passed the list of device tree files > from the CONFIG_OF_LIST variable. > A platform or board can define either of those in their defconfig file > to allow an easy building of such an image. > > Signed-off-by: Andre Przywara > --- > Kconfig | 17 +++++++++++++++++ > Makefile | 20 ++++++++++++++++++++ > 2 files changed, 37 insertions(+) Reviewed-by: Simon Glass But please can you mention this in the documentation at doc/uImage.FIT?