sonic-buildimage/platform/marvell-arm64/sonic_fit.its
Pavan-Nokia c5d0507224
[arm64][Nokia-7215-A1]Add support for Nokia-7215-A1 platform (#13795)
Add new Nokia build target and establish an arm64 build:

    Platform: arm64-nokia_ixs7215_52xb-r0
    HwSKU: Nokia-7215-A1
    ASIC: marvell
    Port Config: 48x1G + 4x10G

How I did it

- Change make files for saiserver and syncd to use Bulleseye kernel
- Change Marvell SAI version to 1.11.0-1
- Add Prestera make files to build kernel, Flattened Device Tree blob and ramdisk for arm64 platforms
- Provide device and platform related files for new platform support (arm64-nokia_ixs7215_52xb-r0).
2023-05-18 14:24:05 -07:00

59 lines
1.6 KiB
Plaintext

/dts-v1/;
/ {
description = "U-Boot fitImage for SONIC Marvell Arm64";
#address-cells = <1>;
images {
kernel_ac5x {
description = "Linux Kernel for AC5x";
data = /incbin/("/boot/vmlinuz-5.10.0-18-2-arm64");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "none";
load = <0x2 0x2080000>;
entry = <0x2 0x2080000>;
hash@1 {
algo = "sha1";
};
};
fdt_ac5x {
description = "Flattened Device Tree blob for AC5x";
data = /incbin/("/boot/ac5x.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x2 0x1000000>;
hash@1 {
algo = "sha1";
};
};
ramdisk_ac5x {
description = "ramdisk for AC5x";
data = /incbin/("/boot/initrd.img-5.10.0-18-2-arm64");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "gzip";
load = <0x2 0x6000000>;
entry = <0x2 0x6000000>;
hash@1 {
algo = "sha1";
};
};
};
configurations {
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";
hash@1 {
algo = "sha1";
};
};
};
};