/dts-v1/; / { description = "Simple image with single Linux kernel and FDT blob"; #address-cells = <1>; images { kernel@1 { description = "Vanilla Linux kernel v3.10"; data = /incbin/("./zImage"); type = "kernel_noload"; arch = "arm"; os = "linux"; compression = "none"; load = <0x00000000>; entry = <0x00000000>; hash@1 { algo = "crc32"; }; hash@2 { algo = "sha1"; }; }; fdt@1 { description = "Flattened Device Tree blob"; data = /incbin/("./am335x-bone.dtb"); type = "flat_dt"; arch = "arm"; compression = "none"; hash@1 { algo = "crc32"; }; hash@2 { algo = "sha1"; }; }; ramdisk@1 { description = "recovery ramdisk"; data = /incbin/("../ramdisk-pm.gz"); type = "ramdisk"; arch = "arm"; os = "linux"; compression = "none"; load = <00000000>; entry = <00000000>; hash@1 { algo = "sha1"; }; }; }; /* a notable concept of FIT, “configurations” */ configurations { default = "defaultconf@1"; defaultconf@1 { description = "Boot Linux kernel with FDT blob"; kernel = "kernel@1"; fdt = "fdt@1"; }; recoveryconf@1 { description = "Boot Linux kernel + fdt with ramdisk for recovery"; kernel = "kernel@1"; ramdisk = "ramdisk@1"; fdt = "fdt@1"; }; }; };