-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathkernel_breadbee.its
More file actions
83 lines (80 loc) · 1.52 KB
/
kernel_breadbee.its
File metadata and controls
83 lines (80 loc) · 1.52 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
/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-infinity3-msc313e-breadbee.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x22e00000>;
hash@1 {
algo = "crc32";
};
hash@2 {
algo = "sha1";
};
};
fdt@1 {
data = /incbin/("linux/arch/arm/boot/dts/mstar-infinity-msc313-breadbee_crust.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x22e00000>;
hash@1 {
algo = "crc32";
};
hash@2 {
algo = "sha1";
};
};
/* fdt@2 {
data = /incbin/("linux/arch/arm/boot/dts/mstar-infinity3-msc313e-wiibee.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x22e00000>;
hash@1 {
algo = "crc32";
};
hash@2 {
algo = "sha1";
};
};
*/
/include/ "bbbuildroot/buildroot/output/images/breadbee-overlays/fdtlist"
};
configurations {
default = "breadbee";
breadbee {
kernel = "kernel@0";
fdt = "fdt@0";
};
breadbee_crust {
kernel = "kernel@0";
fdt = "fdt@1";
};
/* wiibee {
kernel = "kernel@0";
fdt = "fdt@2";
};
*/
/include/ "bbbuildroot/buildroot/output/images/breadbee-overlays/configlist"
};
};