blob: 77ddf622deb84da04e3be6859da884496b39d6a5 [file] [log] [blame]
Marian Balakowicz3310c542008-03-12 12:13:13 +01001/*
Bin Menga1875592016-02-05 19:30:11 -08002 * Simple U-Boot uImage source file containing a single kernel
Marian Balakowicz3310c542008-03-12 12:13:13 +01003 */
Ira W. Snyder824d8292009-11-04 13:37:59 -08004
5/dts-v1/;
6
Marian Balakowicz3310c542008-03-12 12:13:13 +01007/ {
8 description = "Simple image with single Linux kernel";
9 #address-cells = <1>;
10
11 images {
Andre Przywarab8790eb2017-12-04 02:05:08 +000012 kernel {
Marian Balakowicz3310c542008-03-12 12:13:13 +010013 description = "Vanilla Linux kernel";
14 data = /incbin/("./vmlinux.bin.gz");
15 type = "kernel";
16 arch = "ppc";
17 os = "linux";
18 compression = "gzip";
19 load = <00000000>;
20 entry = <00000000>;
Andre Przywarab8790eb2017-12-04 02:05:08 +000021 hash-1 {
Marian Balakowicz3310c542008-03-12 12:13:13 +010022 algo = "crc32";
23 };
Andre Przywarab8790eb2017-12-04 02:05:08 +000024 hash-2 {
Marian Balakowicz3310c542008-03-12 12:13:13 +010025 algo = "sha1";
26 };
27 };
28 };
29
30 configurations {
Andre Przywarab8790eb2017-12-04 02:05:08 +000031 default = "config-1";
32 config-1 {
Marian Balakowicz3310c542008-03-12 12:13:13 +010033 description = "Boot Linux kernel";
Andre Przywarab8790eb2017-12-04 02:05:08 +000034 kernel = "kernel";
Marian Balakowicz3310c542008-03-12 12:13:13 +010035 };
36 };
37};
Simon Glass90268b82014-10-19 21:11:24 -060038
39
40
41For x86 a setup node is also required: see x86-fit-boot.txt.
42
43/dts-v1/;
44
45/ {
46 description = "Simple image with single Linux kernel on x86";
47 #address-cells = <1>;
48
49 images {
Andre Przywarab8790eb2017-12-04 02:05:08 +000050 kernel {
Simon Glass90268b82014-10-19 21:11:24 -060051 description = "Vanilla Linux kernel";
52 data = /incbin/("./image.bin.lzo");
53 type = "kernel";
54 arch = "x86";
55 os = "linux";
56 compression = "lzo";
57 load = <0x01000000>;
58 entry = <0x00000000>;
Andre Przywarab8790eb2017-12-04 02:05:08 +000059 hash-2 {
Simon Glass90268b82014-10-19 21:11:24 -060060 algo = "sha1";
61 };
62 };
63
Andre Przywarab8790eb2017-12-04 02:05:08 +000064 setup {
Simon Glass90268b82014-10-19 21:11:24 -060065 description = "Linux setup.bin";
66 data = /incbin/("./setup.bin");
67 type = "x86_setup";
68 arch = "x86";
69 os = "linux";
70 compression = "none";
71 load = <0x00090000>;
72 entry = <0x00090000>;
Andre Przywarab8790eb2017-12-04 02:05:08 +000073 hash-2 {
Simon Glass90268b82014-10-19 21:11:24 -060074 algo = "sha1";
75 };
76 };
77 };
78
79 configurations {
Andre Przywarab8790eb2017-12-04 02:05:08 +000080 default = "config-1";
81 config-1 {
Simon Glass90268b82014-10-19 21:11:24 -060082 description = "Boot Linux kernel";
Andre Przywarab8790eb2017-12-04 02:05:08 +000083 kernel = "kernel";
84 setup = "setup";
Simon Glass90268b82014-10-19 21:11:24 -060085 };
86 };
87};
Simon Glassdc396212016-07-17 01:22:41 -060088
89Note: the above assumes a 32-bit kernel. To directly boot a 64-bit kernel,
90change both arch values to "x86_64". U-Boot will then change to 64-bit mode
91before booting the kernel (see boot_linux_kernel()).