forked from frank-w/BPI-Router-Linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbpi-r4.its
More file actions
138 lines (136 loc) · 3.09 KB
/
bpi-r4.its
File metadata and controls
138 lines (136 loc) · 3.09 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/dts-v1/;
/ {
description = "U-Boot fitImage for bpi-r4 aarch64 kernel";
#address-cells = <1>;
images {
kernel-1 {
description = "Linux Kernel %version%";
data = /incbin/("./arch/arm64/boot/Image.gz");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "gzip";
load = <0x44000000>;
entry = <0x44000000>;
hash-1 {
algo = "sha1";
};
};
fdt-base {
description = "Flattened Device Tree blob";
data = /incbin/("./arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4.dtb");
type = "flat_dt";
arch = "arm64";
load = <0x47000000>;
compression = "none";
hash-1 {
algo = "sha1";
};
};
fdt-base-2g5 {
description = "Flattened Device Tree blob";
data = /incbin/("./arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-2g5.dtb");
type = "flat_dt";
arch = "arm64";
load = <0x47000000>;
compression = "none";
hash-1 {
algo = "sha1";
};
};
fdt-ov-sd {
description = "Flattened Device Tree blob";
data = /incbin/("./arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-sd.dtbo");
type = "flat_dt";
};
fdt-ov-emmc {
description = "Flattened Device Tree blob";
data = /incbin/("./arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-emmc.dtbo");
type = "flat_dt";
};
fdt-ov-wifi {
description = "Flattened Device Tree blob";
data = /incbin/("./arch/arm64/boot/dts/mediatek/mt7988a-bananapi-bpi-r4-wifi-mt7996a.dtbo");
type = "flat_dt";
};
/* fdt-ov-nand{
data = /incbin/("./arch/arm64/boot/dts/mediatek/mt7986a-bananapi-bpi-r3-nand.dtbo");
type = "flat_dt";
arch = "arm64";
};*/
/* ramdisk-1 {
description = "ramdisk";
data = /incbin/("./rootfs_arm64.cpio.gz");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "gzip";
hash-1 {
algo = "sha1";
};
};*/
};
configurations {
default = "conf-sd";
conf-base {
description = "Boot Linux kernel with base FDT blob";
kernel = "kernel-1";
fdt = "fdt-base";
//ramdisk = "ramdisk-1";
hash-1 {
algo = "sha1";
};
};
conf-base-2g5 {
description = "Boot Linux kernel with base FDT blob";
kernel = "kernel-1";
fdt = "fdt-base-2g5";
//ramdisk = "ramdisk-1";
hash-1 {
algo = "sha1";
};
};
conf-sd {
description = "Boot Linux kernel with SD FDT blob";
kernel = "kernel-1";
fdt = "fdt-base", "fdt-ov-sd";
//ramdisk = "ramdisk-1";
hash-1 {
algo = "sha1";
};
};
conf-emmc {
description = "Boot Linux kernel with EMMC FDT blob";
kernel = "kernel-1";
fdt = "fdt-base", "fdt-ov-emmc";
//ramdisk = "ramdisk-1";
hash-1 {
algo = "sha1";
};
};
wifi {
description = "WIFI FDT Overlay";
fdt = "fdt-ov-wifi";
hash-1 {
algo = "sha1";
};
};
conf-sd-wifi {
description = "Boot Linux kernel with SD + WIFI FDT blob";
kernel = "kernel-1";
fdt = "fdt-base", "fdt-ov-sd", "fdt-ov-wifi";
//ramdisk = "ramdisk-1";
hash-1 {
algo = "sha1";
};
};
ov-sd {
description = "SD FDT overlay blob";
fdt = "fdt-ov-sd";
};
ov-emmc {
description = "EMMC FDT overlay blob";
fdt = "fdt-ov-emmc";
};
};
};