/* * U-boot FIT image with xipImage, ramdisks and FDT blobs for Vybrid's Cortex-M4 */ /dts-v1/; / { description = "Linux for Vybrid's Cortex-M4"; #address-cells = <1>; images { kernel@1 { description = "Linux Kernel 4.1-rc1"; data = /incbin/("./xipImage"); type = "kernel"; arch = "arm"; os = "linux"; compression = "none"; load = <0x8f000080>; entry = <0x0f000081>; hash@1 { algo = "md5"; }; }; ramdisk@1 { description = "BusyBox based initrd"; data = /incbin/("./initramfs.cpio.lzo"); type = "ramdisk"; arch = "arm"; os = "linux"; compression = "lzo"; load = <0x8d000000>; hash@1 { algo = "md5"; }; }; fdt@1 { description = "Vybrid VF610 for Cortex-M4"; data = /incbin/("./vf610m4-colibri.dtb"); type = "flat_dt"; arch = "arm"; compression = "none"; load = <0x8df00000>; hash@1 { algo = "md5"; }; }; }; configurations { default = "config@1"; config@1 { description = "Linux for Vybrid's Cortex-M4"; kernel = "kernel@1"; ramdisk = "ramdisk@1"; fdt = "fdt@1"; }; }; };