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
| /dts-v1/;
| /{
| description = "Simple Image with single linux kernel";
| #address-cells = <0x01>;
|
| images {
| kernel@1 {
| description = "aw linux Image.gz";
| data = /incbin/("./Image.gz");
| type = "kernel";
| arch = "arm64";
| os = "linux";
| compression = "gzip";
| load = <0x40080000>;
| entry = <0x40080000>;
| };
| };
|
| configurations {
| default = "config@1";
| config@1 {
| description = "only linux kernel";
| kernel = "kernel@1";
| };
| };
| };
|
|