build/config/its/marvell/a37xx/espressobin.its

121 lines
3.3 KiB
Plaintext

/dts-v1/;
/ {
description = "EspressoBIN 3720 FIT Image";
#address-cells = <1>;
images {
kernel {
description = "Vanilla Linux kernel";
data = /incbin/("/boot/vmlinuz-$(uname -r)");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "none";
load = <0x07000000>;
entry = <0x07000000>;
hash {
algo = "sha1";
};
};
ramdisk {
description = "Boot ramdisk";
data = /incbin/("/boot/initrd.img-$(uname -r)");
type = "ramdisk";
arch = "arm64";
os = "linux";
hash {
algo = "sha1";
};
};
fdtv5 {
description = "Flattened Device Tree ebinv5";
data = /incbin/("/boot/dtb/marvell/armada-3720-espressobin.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x06f00000>;
entry = <0x06f00000>;
hash {
algo = "sha1";
};
};
fdtv7 {
description = "Flattened Device Tree ebinv7";
data = /incbin/("/boot/dtb/marvell/armada-3720-espressobin-v7.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x06f00000>;
entry = <0x06f00000>;
hash {
algo = "sha1";
};
};
fdtv5-emmc {
description = "Flattened Device Tree ebinv5 with eMMC";
data = /incbin/("/boot/dtb/marvell/armada-3720-espressobin-emmc.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x06f00000>;
entry = <0x06f00000>;
hash {
algo = "sha1";
};
};
fdtv7-emmc {
description = "Flattened Device Tree ebinv7";
data = /incbin/("/boot/dtb/marvell/armada-3720-espressobin-v7-emmc.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x06f00000>;
entry = <0x06f00000>;
hash {
algo = "sha1";
};
};
};
configurations {
default = "v5";
v5 {
description = "Standard Boot ebinv5";
kernel = "kernel";
ramdisk = "ramdisk";
fdt = "fdtv5";
hash {
algo = "sha1";
};
};
v7 {
description = "Standard Boot ebinv7";
kernel = "kernel";
ramdisk = "ramdisk";
fdt = "fdtv7";
hash {
algo = "sha1";
};
};
v5-emmc {
description = "Standard Boot ebinv5 with emmc";
kernel = "kernel";
ramdisk = "ramdisk";
fdt = "fdtv5-emmc";
hash {
algo = "sha1";
};
};
v7 {
description = "Standard Boot ebinv7 with emmc";
kernel = "kernel";
ramdisk = "ramdisk";
fdt = "fdtv7-emmc";
hash {
algo = "sha1";
};
};
};
};