-
Notifications
You must be signed in to change notification settings - Fork 48
/
bpi-r64.its
55 lines (53 loc) · 1.04 KB
/
bpi-r64.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
/dts-v1/;
/ {
description = "U-Boot fitImage for bpi-r64 aarch64 kernel";
#address-cells = <1>;
images {
kernel-1 {
description = "Linux Kernel %version%";
data = /incbin/("./arch/arm64/boot/Image");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "none";
load = <0x40080000>;
entry = <0x40080000>;
hash-1 {
algo = "sha1";
};
};
fdt-1 {
description = "Flattened Device Tree blob";
data = /incbin/("./arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
hash-1 {
algo = "sha1";
};
};
/* ramdisk@0 {
description = "ramdisk";
data = /incbin/("./ramdisk.cpio");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "none";
hash@1 {
algo = "sha1";
};
};*/
};
configurations {
default = "conf-1";
conf-1 {
description = "Boot Linux kernel with FDT blob";
kernel = "kernel-1";
fdt = "fdt-1";
//ramdisk = "ramdisk@0";
hash-1 {
algo = "sha1";
};
};
};
};