forked from frank-w/BPI-Router-Linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbpi-r2pro.its
55 lines (53 loc) · 1023 Bytes
/
bpi-r2pro.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
/*
* Copyright (C) 2020 Rockchip Electronics Co., Ltd
*
* SPDX-License-Identifier: GPL-2.0
*/
/dts-v1/;
/ {
description = "U-Boot fitImage for bpi-r2pro aarch64 kernel";
images {
kernel {
description = "Linux Kernel %version%";
data = /incbin/("arch/arm64/boot/Image.gz");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "gzip";
entry = <0x02080000>;
load = <0x02080000>;
hash {
algo = "sha256";
};
};
fdt {
description = "Flattened Device Tree blob";
data = /incbin/("arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
hash {
algo = "sha256";
};
};
/* ramdisk {
data = /incbin/("out/ramdisk");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "none";
load = <0xffffff02>;
hash {
algo = "sha256";
};
};*/
};
configurations {
default = "conf";
conf {
fdt = "fdt";
kernel = "kernel";
//ramdisk = "ramdisk";
};
};
};