blob: da488607732b2cddae1dc2a81bde99f2c8826d5c (
plain) (
blame)
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
|
/dts-v1/;
/ {
description = "FUCK";
#address-cells = <1>;
images {
kernel {
description = "Garbaggio";
data = /incbin/("../../../apos.bin");
type = "kernel";
arch = "riscv";
os = "apos";
compression = "none";
load = <0x80080000>;
entry = <0x80080000>;
hash-1 {
algo = "sha1";
};
};
initrd {
description = "Gargabbio initrd";
data = /incbin/("initrd");
type = "ramdisk";
arch = "riscv";
os = "apos";
compression = "none";
load = <0x88300000>;
hash-1 {
algo = "sha1";
};
};
};
configurations {
default = "config";
config {
description = "Default configuration";
kernel = "kernel";
ramdisk = "initrd";
hash-1 {
algo = "sha1";
};
};
};
};
|