diff options
author | 2025-03-08 22:04:20 +0800 | |
---|---|---|
committer | 2025-03-08 22:04:20 +0800 | |
commit | a07bb8fd1299070229f0e8f3dcb57ffd5ef9870a (patch) | |
tree | 84f21bd0bf7071bc5fc7dd989e77d7ceb5476682 /arch/mips/generic/vmlinux.its.S | |
download | ohosKernel-a07bb8fd1299070229f0e8f3dcb57ffd5ef9870a.tar.gz ohosKernel-a07bb8fd1299070229f0e8f3dcb57ffd5ef9870a.zip |
Initial commit: OpenHarmony-v4.0-ReleaseOpenHarmony-v4.0-Release
Diffstat (limited to 'arch/mips/generic/vmlinux.its.S')
-rw-r--r-- | arch/mips/generic/vmlinux.its.S | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/arch/mips/generic/vmlinux.its.S b/arch/mips/generic/vmlinux.its.S new file mode 100644 index 000000000..3e2546765 --- /dev/null +++ b/arch/mips/generic/vmlinux.its.S | |||
@@ -0,0 +1,32 @@ | |||
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 | }; | ||