summaryrefslogtreecommitdiffstats
path: root/images/k3-am625-beagleplay.its
blob: 987d4d166099743d0372446ad49a5b6989ac0fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

/dts-v1/;

/ {
	description = "barebox for BeaglePlay board";

	images {
		barebox {
			description = "barebox for BeaglePlay board";
			type = "firmware";
			os = "linux";
			arch = "arm";
			compression = "none";
			load = <0x80800000>;
			entry = <0x80800000>;
			data = /incbin/("barebox-beagleplay.img");
		};
	};

	configurations {
		default = "conf-0";

		conf-0 {
			description = "barebox for BeaglePlay board";
			firmware = "barebox";
			loadables = "barebox";
		};
	};
};