aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv/kernel.its
blob: f984d408f4b4dc6beb261872d5b1453bb04e8ebe (plain) (blame)
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
30
31
32
33
34
/dts-v1/;

/ {
	description = "FUCK";
#address-cells = <1>;

	images {
		kernel {
			description = "My default kenel";
			data = /incbin/("kernel.bin");
			type = "kernel";
			arch = "riscv";
			os = "apos";
			compression = "none";
			load = <0x83800000>;
			entry = <0x83800000>;
			hash-1 {
				algo = "md5";
			};
		};

	};

	configurations {
		default = "config";

		config {
			description = "Default configuration";
			kernel = "kernel";
		};


	};
};