-
Notifications
You must be signed in to change notification settings - Fork 2
/
kernel_m5.its
100 lines (97 loc) · 1.99 KB
/
kernel_m5.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
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
/dts-v1/;
/ {
description = "breadbee dev";
#address-cells = <1>;
images {
kernel@0 {
data = /incbin/("linux/arch/arm/boot/zImage");
type = "kernel";
arch = "arm";
os = "linux";
compression = "none";
load = <0x22800000>;
entry = <0x22800000>;
hash@1 {
algo = "crc32";
};
hash@2 {
algo = "sha1";
};
};
fdt@0 {
data = /incbin/("linux/arch/arm/boot/dts/mstar-mercury5-ssc8336n-midrived06.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x22d00000>;
hash@1 {
algo = "crc32";
};
hash@2 {
algo = "sha1";
};
};
fdt@1 {
data = /incbin/("linux/arch/arm/boot/dts/mstar-mercury5-ssc8336n-midrived08.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x22d00000>;
hash@1 {
algo = "crc32";
};
hash@2 {
algo = "sha1";
};
};
fdt@2 {
data = /incbin/("linux/arch/arm/boot/dts/mstar-mercury5-ssc8336-mirrorcam.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x22d00000>;
hash@1 {
algo = "crc32";
};
hash@2 {
algo = "sha1";
};
};
ramdisk@0 {
data = /incbin/("m5buildroot/buildroot/output/images/rootfs.cpio.gz");
type = "ramdisk";
arch = "arm";
os = "linux";
compression = "none";
load = <0x22e00000>;
hash@1 {
algo = "crc32";
};
hash@2 {
algo = "sha1";
};
};
};
configurations {
default = "midrived06";
midrived06 {
kernel = "kernel@0";
fdt = "fdt@0";
ramdisk = "ramdisk@0";
};
midrived08 {
kernel = "kernel@0";
fdt = "fdt@1";
ramdisk = "ramdisk@0";
};
mirrorcam {
kernel = "kernel@0";
fdt = "fdt@2";
ramdisk = "ramdisk@0";
};
midrived08_nrd {
kernel = "kernel@0";
fdt = "fdt@1";
};
};
};