59ea0daf35
marvell sonic arm64 uboot fit flattened blob file. Used by uboot as refered in this change https://github.com/Azure/sonic-buildimage/pull/4043/files#diff-f6372e5829e59e22aa068273c238ba83 Signed-off-by: Antony Rheneus <arheneus@marvell.com>
56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
/dts-v1/;
|
|
|
|
/ {
|
|
description = "U-Boot fitImage for SONIC Marvell Arm64";
|
|
#address-cells = <1>;
|
|
|
|
images {
|
|
kernel@0 {
|
|
description = "Linux Kernel";
|
|
data = /incbin/("/boot/vmlinuz-4.9.0-9-2-arm64");
|
|
type = "kernel";
|
|
arch = "arm64";
|
|
os = "linux";
|
|
compression = "none";
|
|
load = <0x6000000>;
|
|
entry = <0x6000000>;
|
|
hash@1 {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
fdt@0 {
|
|
description = "Flattened Device Tree blob";
|
|
data = /incbin/("/boot/armada-7020-comexpress.dtb");
|
|
type = "flat_dt";
|
|
arch = "arm64";
|
|
compression = "none";
|
|
hash@1 {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
ramdisk@0 {
|
|
description = "ramdisk";
|
|
data = /incbin/("/boot/initrd.img-4.9.0-9-2-arm64");
|
|
type = "ramdisk";
|
|
arch = "arm64";
|
|
os = "linux";
|
|
compression = "gzip";
|
|
hash@1 {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
};
|
|
configurations {
|
|
default = "conf@1";
|
|
conf@1 {
|
|
description = "Boot Linux kernel with FDT blob + ramdisk";
|
|
kernel = "kernel@0";
|
|
fdt = "fdt@0";
|
|
ramdisk = "ramdisk@0";
|
|
hash@1 {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
};
|
|
};
|