blob: 386c605c07fa0333872e6ec760c7573df21d6e61 [file] [log] [blame]
Marek Vasut01711442024-10-05 03:15:50 +02001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2/*
3 * Copyright (C) 2024 Marek Vasut <marex@denx.de>
4 */
5
6&binman {
7 u-boot {
8 filename = "u-boot.itb";
9
10 fit {
11 description = "U-Boot mainline";
12 fit,fdt-list = "of-list";
13 #address-cells = <1>;
14
15 images {
16 uboot {
17 arch = "arm";
18 compression = "none";
19 description = "U-Boot (32-bit)";
20 entry = <CONFIG_TEXT_BASE>;
21 load = <CONFIG_TEXT_BASE>;
22 type = "standalone";
23
24 uboot-blob {
25 filename = "u-boot-nodtb.bin";
26 type = "blob-ext";
27 };
28 };
29
30 @fdt-SEQ {
31 compression = "none";
32 description = "NAME";
33 type = "flat_dt";
34
35 uboot-fdt-blob {
36 filename = "u-boot.dtb";
37 type = "blob-ext";
38 };
39 };
40 };
41
42 configurations {
43 default = "@config-DEFAULT-SEQ";
44
45 @config-SEQ {
46 description = "NAME";
47 fdt = "fdt-SEQ";
48 firmware = "uboot";
49 };
50 };
51 };
52 };
53};