Home | History | Annotate | Download | only in beagle_x15
      1 /dts-v1/;
      2 
      3 / {
      4 	description = "beagle-x15";
      5 	#address-cells = <1>;
      6 
      7 	images {
      8 		kernel@1 {
      9 			description = "TI kernel";
     10 			data = /incbin/("zImage");
     11 			type = "kernel";
     12 			arch = "arm";
     13 			os = "linux";
     14 			compression = "none";
     15 			load = <0x82000000>;
     16 			entry = <0x82000000>;
     17 		};
     18 		ramdisk@1 {
     19 			description = "Android Ramdisk Image";
     20 			data = /incbin/("ramdisk.img");
     21 			type = "ramdisk";
     22 			arch = "arm";
     23 			os = "linux";
     24 			compression = "none";
     25 			load = <0x88080000>;
     26 			entry = <0x88080000>;
     27 		};
     28 		fdt@1 {
     29 			description = "AM57xx-beagle-x15-revc";
     30 			data = /incbin/("am57xx-beagle-x15-revc.dtb");
     31 			type = "flat_dt";
     32 			arch = "arm";
     33 			compression = "none";
     34 			load = <0x83000000>;
     35 		};
     36 	};
     37 
     38 	configurations {
     39 		default = "am57xx-beagle-x15-revc.dtb";
     40 		am57xx-beagle-x15-revc.dtb {
     41 			description = "AM57xx beagle-x15 C";
     42 			kernel = "kernel@1";
     43 			ramdisk = "ramdisk@1";
     44 			fdt = "fdt@1";
     45 		};
     46 	};
     47 };
     48