forked from endlessm/linux-meson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amlogic.its
71 lines (68 loc) · 1.37 KB
/
amlogic.its
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/dts-v1/;
/ {
description = "Amlogic kernel and FDT";
#address-cells = <1>;
images {
kernel@1 {
description = "Linux 3.x";
data = /incbin/("arch/arm/boot/zImage");
type = "kernel";
arch = "arm";
os = "linux";
compression = "none";
load = <0x00208000>;
entry = <0x00208000>;
hash@1 {
algo = "crc32";
};
};
fdt@1 {
description = "Amlogic M201 Flattened Device Tree blob";
data = /incbin/("arch/arm/boot/dts/meson8b_m201_1G.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
hash@1 {
algo = "crc32";
};
};
fdt@2 {
description = "Amlogic EC100 Flattened Device Tree blob";
data = /incbin/("arch/arm/boot/dts/meson8b-ec100.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
hash@1 {
algo = "crc32";
};
};
fdt@3 {
description = "Amlogic ATV185 Flattened Device Tree blob";
data = /incbin/("arch/arm/boot/dts/meson8b-atv185.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
hash@1 {
algo = "crc32";
};
};
};
configurations {
default = "ec100";
m201 {
description = "Boot Amlogic M201";
kernel = "kernel@1";
fdt = "fdt@1";
};
ec100 {
description = "Boot Endless EC100";
kernel = "kernel@1";
fdt = "fdt@2";
};
atv185 {
description = "Boot Endless ATV185";
kernel = "kernel@1";
fdt = "fdt@3";
};
};
};