Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/mips/generic/board-ocelot.its.S
26424 views
1
/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
2
/ {
3
images {
4
fdt-ocelot_pcb123 {
5
description = "MSCC Ocelot PCB123 Device Tree";
6
data = /incbin/("boot/dts/mscc/ocelot_pcb123.dtb");
7
type = "flat_dt";
8
arch = "mips";
9
compression = "none";
10
hash {
11
algo = "sha1";
12
};
13
};
14
15
fdt-ocelot_pcb120 {
16
description = "MSCC Ocelot PCB120 Device Tree";
17
data = /incbin/("boot/dts/mscc/ocelot_pcb120.dtb");
18
type = "flat_dt";
19
arch = "mips";
20
compression = "none";
21
hash {
22
algo = "sha1";
23
};
24
};
25
};
26
27
configurations {
28
conf-ocelot_pcb123 {
29
description = "Ocelot Linux kernel";
30
kernel = "kernel";
31
fdt = "fdt-ocelot_pcb123";
32
};
33
34
conf-ocelot_pcb120 {
35
description = "Ocelot Linux kernel";
36
kernel = "kernel";
37
fdt = "fdt-ocelot_pcb120";
38
};
39
};
40
};
41
42