2020-01-09 18:46:21 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Jagan Teki <jagan@amarulasolutions.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
/ {
|
2020-07-19 19:55:57 +00:00
|
|
|
binman: binman {
|
|
|
|
multiple-images;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-07-19 19:56:07 +00:00
|
|
|
#ifdef CONFIG_SPL
|
2020-07-19 19:55:57 +00:00
|
|
|
&binman {
|
|
|
|
simple-bin {
|
2020-01-09 18:46:21 +00:00
|
|
|
filename = "u-boot-rockchip.bin";
|
|
|
|
pad-byte = <0xff>;
|
|
|
|
|
|
|
|
blob {
|
|
|
|
filename = "idbloader.img";
|
|
|
|
};
|
|
|
|
|
|
|
|
u-boot-img {
|
|
|
|
offset = <CONFIG_SPL_PAD_TO>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2020-07-19 19:56:07 +00:00
|
|
|
#endif
|