mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
e87c869db3
Add support for Schneider Electric RZ/N1D and RZ/N1S boards, which are based on the Reneasas RZ/N1 SoC devices. The intention is to support both boards using a single defconfig, and to handle the differences at runtime. Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org> Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
23 lines
454 B
Text
23 lines
454 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Configuration file for binman
|
|
*
|
|
* After building u-boot, can generate the SPKG output by running:
|
|
* tools/binman/binman build -d arch/arm/dts/r9a06g032-rzn1-snarc.dtb -O <outdir>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
/ {
|
|
binman: binman {
|
|
};
|
|
};
|
|
|
|
&binman {
|
|
mkimage {
|
|
filename = "u-boot.bin.spkg";
|
|
args = "-n board/schneider/rzn1-snarc/spkgimage.cfg -T spkgimage -a 0x20040000 -e 0x20040000";
|
|
u-boot {
|
|
};
|
|
};
|
|
};
|