2020-03-20 01:25:38 -05:00
|
|
|
/dts-v1/;
|
|
|
|
|
|
|
|
/ {
|
|
|
|
description = "U-Boot fitImage for SONIC Marvell Arm64";
|
|
|
|
#address-cells = <1>;
|
|
|
|
|
|
|
|
images {
|
2023-05-18 16:24:05 -05:00
|
|
|
kernel_ac5x {
|
|
|
|
description = "Linux Kernel for AC5x";
|
|
|
|
data = /incbin/("/boot/vmlinuz-5.10.0-18-2-arm64");
|
2020-03-20 01:25:38 -05:00
|
|
|
type = "kernel";
|
|
|
|
arch = "arm64";
|
|
|
|
os = "linux";
|
|
|
|
compression = "none";
|
2023-05-18 16:24:05 -05:00
|
|
|
load = <0x2 0x2080000>;
|
|
|
|
entry = <0x2 0x2080000>;
|
2020-03-20 01:25:38 -05:00
|
|
|
hash@1 {
|
|
|
|
algo = "sha1";
|
|
|
|
};
|
|
|
|
};
|
2023-05-18 16:24:05 -05:00
|
|
|
fdt_ac5x {
|
|
|
|
description = "Flattened Device Tree blob for AC5x";
|
|
|
|
data = /incbin/("/boot/ac5x.dtb");
|
2020-03-20 01:25:38 -05:00
|
|
|
type = "flat_dt";
|
|
|
|
arch = "arm64";
|
|
|
|
compression = "none";
|
2023-05-18 16:24:05 -05:00
|
|
|
load = <0x2 0x1000000>;
|
2020-03-20 01:25:38 -05:00
|
|
|
hash@1 {
|
|
|
|
algo = "sha1";
|
|
|
|
};
|
|
|
|
};
|
2023-05-18 16:24:05 -05:00
|
|
|
ramdisk_ac5x {
|
|
|
|
description = "ramdisk for AC5x";
|
|
|
|
data = /incbin/("/boot/initrd.img-5.10.0-18-2-arm64");
|
2020-03-20 01:25:38 -05:00
|
|
|
type = "ramdisk";
|
|
|
|
arch = "arm64";
|
|
|
|
os = "linux";
|
|
|
|
compression = "gzip";
|
2023-05-18 16:24:05 -05:00
|
|
|
load = <0x2 0x6000000>;
|
|
|
|
entry = <0x2 0x6000000>;
|
2020-03-20 01:25:38 -05:00
|
|
|
hash@1 {
|
|
|
|
algo = "sha1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
configurations {
|
2023-05-18 16:24:05 -05:00
|
|
|
default = "conf_ac5x";
|
|
|
|
conf_ac5x {
|
|
|
|
description = "Boot Linux kernel with FDT blob + ramdisk for RD_AC5x";
|
|
|
|
kernel = "kernel_ac5x";
|
|
|
|
fdt = "fdt_ac5x";
|
|
|
|
ramdisk = "ramdisk_ac5x";
|
2020-03-20 01:25:38 -05:00
|
|
|
hash@1 {
|
|
|
|
algo = "sha1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|