Skip to content

Commit 4552ca6

Browse files
committed
doxygen: fix one typo
Signed-off-by: Chen Wang <[email protected]>
1 parent 55428e4 commit 4552ca6

File tree

2 files changed

+142
-1
lines changed

2 files changed

+142
-1
lines changed
Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
OUTPUT_ARCH( "riscv" )
2+
MEMORY
3+
{
4+
SRAM(wx): ORIGIN = 0x80000000 + 0x200000, LENGTH = 32 * 1024 * 1024
5+
}
6+
ENTRY(_start)
7+
SECTIONS
8+
{
9+
. = ORIGIN(SRAM) ;
10+
__sram_base = ORIGIN(SRAM);
11+
__sram_size = LENGTH(SRAM);
12+
__sram_end = __sram_base + __sram_size;
13+
__text_start = .;
14+
.start :
15+
{
16+
*(.start);
17+
} > SRAM
18+
. = ALIGN(8);
19+
.text :
20+
{
21+
*(.text)
22+
*(.text.*)
23+
*(.rodata)
24+
*(.rodata*)
25+
*(.glue_7)
26+
*(.glue_7t)
27+
*(.gnu.linkonce.t*)
28+
. = ALIGN(8);
29+
__fsymtab_start = .;
30+
KEEP(*(FSymTab))
31+
__fsymtab_end = .;
32+
. = ALIGN(8);
33+
__vsymtab_start = .;
34+
KEEP(*(VSymTab))
35+
__vsymtab_end = .;
36+
. = ALIGN(8);
37+
. = ALIGN(8);
38+
__rt_init_start = .;
39+
KEEP(*(SORT(.rti_fn*)))
40+
__rt_init_end = .;
41+
. = ALIGN(8);
42+
__rt_utest_tc_tab_start = .;
43+
KEEP(*(UtestTcTab))
44+
__rt_utest_tc_tab_end = .;
45+
. = ALIGN(8);
46+
_etext = .;
47+
} > SRAM
48+
.eh_frame_hdr :
49+
{
50+
*(.eh_frame_hdr)
51+
*(.eh_frame_entry)
52+
} > SRAM
53+
.eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) } > SRAM
54+
. = ALIGN(8);
55+
__text_end = .;
56+
__text_size = __text_end - __text_start;
57+
.data :
58+
{
59+
*(.data)
60+
*(.data.*)
61+
*(.data1)
62+
*(.data1.*)
63+
. = ALIGN(8);
64+
PROVIDE( __global_pointer$ = . + 0x800 );
65+
*(.sdata)
66+
*(.sdata.*)
67+
} > SRAM
68+
. = ALIGN(8);
69+
.ctors :
70+
{
71+
PROVIDE(__ctors_start__ = .);
72+
KEEP(*(SORT(.init_array.*)))
73+
KEEP(*(.init_array))
74+
PROVIDE(__ctors_end__ = .);
75+
} > SRAM
76+
.dtors :
77+
{
78+
PROVIDE(__dtors_start__ = .);
79+
KEEP(*(SORT(.fini_array.*)))
80+
KEEP(*(.fini_array))
81+
PROVIDE(__dtors_end__ = .);
82+
} > SRAM
83+
.stack :
84+
{
85+
. = ALIGN(64);
86+
__stack_start__ = .;
87+
. += 8192;
88+
__stack_cpu0 = .;
89+
. += 8192;
90+
__stack_cpu1 = .;
91+
} > SRAM
92+
. = ALIGN(8);
93+
.osdebug :
94+
{
95+
_osdebug_start = .;
96+
. += 87K;
97+
_osdebug_end = .;
98+
} > SRAM
99+
. = ALIGN(8);
100+
.sbss :
101+
{
102+
__bss_start = .;
103+
*(.sbss)
104+
*(.sbss.*)
105+
*(.dynsbss)
106+
*(.scommon)
107+
} > SRAM
108+
.bss :
109+
{
110+
*(.bss)
111+
*(.bss.*)
112+
*(.dynbss)
113+
*(COMMON)
114+
__bss_end = .;
115+
} > SRAM
116+
_end = .;
117+
.stab 0 : { *(.stab) }
118+
.stabstr 0 : { *(.stabstr) }
119+
.stab.excl 0 : { *(.stab.excl) }
120+
.stab.exclstr 0 : { *(.stab.exclstr) }
121+
.stab.index 0 : { *(.stab.index) }
122+
.stab.indexstr 0 : { *(.stab.indexstr) }
123+
.comment 0 : { *(.comment) }
124+
.debug 0 : { *(.debug) }
125+
.line 0 : { *(.line) }
126+
.debug_srcinfo 0 : { *(.debug_srcinfo) }
127+
.debug_sfnames 0 : { *(.debug_sfnames) }
128+
.debug_aranges 0 : { *(.debug_aranges) }
129+
.debug_pubnames 0 : { *(.debug_pubnames) }
130+
.debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
131+
.debug_abbrev 0 : { *(.debug_abbrev) }
132+
.debug_line 0 : { *(.debug_line) }
133+
.debug_frame 0 : { *(.debug_frame) }
134+
.debug_str 0 : { *(.debug_str) }
135+
.debug_loc 0 : { *(.debug_loc) }
136+
.debug_macinfo 0 : { *(.debug_macinfo) }
137+
.debug_weaknames 0 : { *(.debug_weaknames) }
138+
.debug_funcnames 0 : { *(.debug_funcnames) }
139+
.debug_typenames 0 : { *(.debug_typenames) }
140+
.debug_varnames 0 : { *(.debug_varnames) }
141+
}

documentation/3.kernel/INDEX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@page page_kernel_core Kenrel
1+
@page page_kernel_core Kernel
22

33
- @subpage page_kernel_basics
44
- @subpage page_thread_management

0 commit comments

Comments
 (0)