Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Feb 10-13, 2025
Register
Loading...
v6.2
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/dts-v1/;
 3
 4/ {
 5	description = KERNEL_NAME;
 6	#address-cells = <ADDR_CELLS>;
 7
 8	images {
 9		kernel {
10			description = KERNEL_NAME;
11			data = /incbin/(VMLINUX_BINARY);
12			type = "kernel";
13			arch = "mips";
14			os = "linux";
15			compression = VMLINUX_COMPRESSION;
16			load = /bits/ ADDR_BITS <VMLINUX_LOAD_ADDRESS>;
17			entry = /bits/ ADDR_BITS <VMLINUX_ENTRY_ADDRESS>;
18			hash {
19				algo = "sha1";
20			};
21		};
22	};
23
24	configurations {
25		default = "conf-default";
26
27		conf-default {
28			description = "Generic Linux kernel";
29			kernel = "kernel";
30		};
31	};
32};
v4.10.11
 
 1/dts-v1/;
 2
 3/ {
 4	description = KERNEL_NAME;
 5	#address-cells = <ADDR_CELLS>;
 6
 7	images {
 8		kernel@0 {
 9			description = KERNEL_NAME;
10			data = /incbin/(VMLINUX_BINARY);
11			type = "kernel";
12			arch = "mips";
13			os = "linux";
14			compression = VMLINUX_COMPRESSION;
15			load = /bits/ ADDR_BITS <VMLINUX_LOAD_ADDRESS>;
16			entry = /bits/ ADDR_BITS <VMLINUX_ENTRY_ADDRESS>;
17			hash@0 {
18				algo = "sha1";
19			};
20		};
21	};
22
23	configurations {
24		default = "conf@default";
25
26		conf@default {
27			description = "Generic Linux kernel";
28			kernel = "kernel@0";
29		};
30	};
31};