Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /dts-v1/;
0003 
0004 / {
0005     description = KERNEL_NAME;
0006     #address-cells = <ADDR_CELLS>;
0007 
0008     images {
0009         kernel {
0010             description = KERNEL_NAME;
0011             data = /incbin/(VMLINUX_BINARY);
0012             type = "kernel";
0013             arch = "mips";
0014             os = "linux";
0015             compression = VMLINUX_COMPRESSION;
0016             load = /bits/ ADDR_BITS <VMLINUX_LOAD_ADDRESS>;
0017             entry = /bits/ ADDR_BITS <VMLINUX_ENTRY_ADDRESS>;
0018             hash {
0019                 algo = "sha1";
0020             };
0021         };
0022     };
0023 
0024     configurations {
0025         default = "conf-default";
0026 
0027         conf-default {
0028             description = "Generic Linux kernel";
0029             kernel = "kernel";
0030         };
0031     };
0032 };