blob: eae3ee715da68d758953867959483683a8336ee5 [file] [log] [blame]
Jagan Teki79030a42020-01-10 00:16:21 +05301// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019 Jagan Teki <jagan@amarulasolutions.com>
4 */
5
6#include <config.h>
7
8/ {
Simon Glass9b312e22020-07-19 13:55:57 -06009 binman: binman {
10 multiple-images;
11 };
12};
13
Simon Glasse999bea2020-07-19 13:56:07 -060014#ifdef CONFIG_SPL
Simon Glass9b312e22020-07-19 13:55:57 -060015&binman {
16 simple-bin {
Jagan Teki79030a42020-01-10 00:16:21 +053017 filename = "u-boot-rockchip.bin";
18 pad-byte = <0xff>;
19
20 blob {
21 filename = "idbloader.img";
22 };
23
24 u-boot-img {
25 offset = <CONFIG_SPL_PAD_TO>;
26 };
27 };
28};
Simon Glasse999bea2020-07-19 13:56:07 -060029#endif