HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-31-18-78 6.17.0-1017-aws #17~24.04.1-Ubuntu SMP Tue May 26 21:09:53 UTC 2026 aarch64
User: ubuntu (1000)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //usr/share/flash-kernel/its/image-nxp-s32.its
/dts-v1/;

/ {
	description = "Ubuntu kernel, ramdisk, FDT blob and boot config for a NXP S32x board";
	#address-cells = <1>;

	images {
		kernel-1 {
			description = "Ubuntu kernel";
			data = /incbin/("@@LINUX_IMAGE_FILE@@");
			type = "kernel";
			arch = "arm64";
			os = "linux";
			compression = "none";
			load =  <0x80000000>;
			entry = <0x80000000>;

			hash-1 {
				algo = "sha256";
			};
		};

		ramdisk-1 {
			description = "Ubuntu ramdisk";
			data = /incbin/("@@INITRD_FILE@@");
			type = "ramdisk";
			arch = "arm64";
			os = "linux";
			compression = "none";
			load =  <0x90000000>;

			hash-1 {
				algo = "sha256";
			};
		};

		fdt-1 {
			description = "Device tree for a NXP S32x board";
			data = /incbin/("@@DEVICE_TREE_FILE@@");
			type = "flat_dt";
			arch = "arm64";
			compression = "none";
			load =  <0x83000000>;

			hash-1 {
				algo = "sha256";
			};
		};
	};

	configurations {
		default = "nxp-s32";

		nxp-s32 {
			description = "Boot config for a NXP S32x board";
			kernel = "kernel-1";
			ramdisk = "ramdisk-1";
			fdt = "fdt-1";
		};
	};
};