2021-11-03 17:12:05 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
|
|
|
|
/ {
|
|
|
|
description = "OpenWrt bootfs image";
|
|
|
|
#address-cells = <1>;
|
|
|
|
|
|
|
|
images {
|
2021-12-24 22:07:39 +00:00
|
|
|
atf {
|
|
|
|
description = "ATF";
|
|
|
|
data = /incbin/("${images_dir}/bl31.bin");
|
|
|
|
type = "firmware";
|
|
|
|
arch = "arm64";
|
|
|
|
os = "arm-trusted-firmware";
|
|
|
|
compression = "none";
|
|
|
|
load = <0x4000>;
|
|
|
|
entry = <0x4000>;
|
|
|
|
|
|
|
|
hash-1 {
|
|
|
|
algo = "sha256";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-03-04 08:39:05 +00:00
|
|
|
uboot {
|
|
|
|
description = "U-Boot";
|
|
|
|
os = "U-Boot";
|
|
|
|
arch = "arm64";
|
|
|
|
compression = "none";
|
|
|
|
load = <0x1000000>;
|
|
|
|
entry = <0x1000000>;
|
|
|
|
|
|
|
|
hash-1 {
|
|
|
|
algo = "sha256";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-11-03 17:12:05 +00:00
|
|
|
kernel {
|
|
|
|
description = "Linux kernel";
|
|
|
|
data = /incbin/("${kernel}");
|
|
|
|
type = "kernel";
|
|
|
|
os = "linux";
|
|
|
|
arch = "arm64";
|
|
|
|
compression = "lzma";
|
|
|
|
load = <0x80000>;
|
|
|
|
entry = <0x80000>;
|
|
|
|
|
|
|
|
hash-1 {
|
|
|
|
algo = "sha256";
|
|
|
|
};
|
|
|
|
};
|
2021-11-19 13:32:59 +00:00
|
|
|
|
2022-03-04 08:39:05 +00:00
|
|
|
fdt_uboot {
|
2021-11-19 13:32:59 +00:00
|
|
|
description = "dtb";
|
|
|
|
type = "flat_dt";
|
|
|
|
compression = "none";
|
|
|
|
|
|
|
|
hash-1 {
|
|
|
|
algo = "sha256";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
configurations {
|
2022-03-04 08:39:05 +00:00
|
|
|
default = "conf_uboot";
|
|
|
|
|
|
|
|
conf_uboot {
|
|
|
|
description = "BRCM 63xxx with uboot";
|
|
|
|
fdt = "fdt_uboot";
|
|
|
|
loadables = "atf", "uboot";
|
|
|
|
};
|
2021-11-03 17:12:05 +00:00
|
|
|
};
|
|
|
|
};
|