From 4552ca680bde95abaf18b26b17d60501c752c9b7 Mon Sep 17 00:00:00 2001 From: Chen Wang Date: Fri, 18 Apr 2025 13:52:57 +0800 Subject: [PATCH] doxygen: fix one typo Signed-off-by: Chen Wang --- bsp/cvitek/cv18xx_risc-v/link.lds.generated | 141 ++++++++++++++++++++ documentation/3.kernel/INDEX.md | 2 +- 2 files changed, 142 insertions(+), 1 deletion(-) create mode 100644 bsp/cvitek/cv18xx_risc-v/link.lds.generated diff --git a/bsp/cvitek/cv18xx_risc-v/link.lds.generated b/bsp/cvitek/cv18xx_risc-v/link.lds.generated new file mode 100644 index 00000000000..9206c7f28d8 --- /dev/null +++ b/bsp/cvitek/cv18xx_risc-v/link.lds.generated @@ -0,0 +1,141 @@ +OUTPUT_ARCH( "riscv" ) +MEMORY +{ + SRAM(wx): ORIGIN = 0x80000000 + 0x200000, LENGTH = 32 * 1024 * 1024 +} +ENTRY(_start) +SECTIONS +{ + . = ORIGIN(SRAM) ; + __sram_base = ORIGIN(SRAM); + __sram_size = LENGTH(SRAM); + __sram_end = __sram_base + __sram_size; + __text_start = .; + .start : + { + *(.start); + } > SRAM + . = ALIGN(8); + .text : + { + *(.text) + *(.text.*) + *(.rodata) + *(.rodata*) + *(.glue_7) + *(.glue_7t) + *(.gnu.linkonce.t*) + . = ALIGN(8); + __fsymtab_start = .; + KEEP(*(FSymTab)) + __fsymtab_end = .; + . = ALIGN(8); + __vsymtab_start = .; + KEEP(*(VSymTab)) + __vsymtab_end = .; + . = ALIGN(8); + . = ALIGN(8); + __rt_init_start = .; + KEEP(*(SORT(.rti_fn*))) + __rt_init_end = .; + . = ALIGN(8); + __rt_utest_tc_tab_start = .; + KEEP(*(UtestTcTab)) + __rt_utest_tc_tab_end = .; + . = ALIGN(8); + _etext = .; + } > SRAM + .eh_frame_hdr : + { + *(.eh_frame_hdr) + *(.eh_frame_entry) + } > SRAM + .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) } > SRAM + . = ALIGN(8); + __text_end = .; + __text_size = __text_end - __text_start; + .data : + { + *(.data) + *(.data.*) + *(.data1) + *(.data1.*) + . = ALIGN(8); + PROVIDE( __global_pointer$ = . + 0x800 ); + *(.sdata) + *(.sdata.*) + } > SRAM + . = ALIGN(8); + .ctors : + { + PROVIDE(__ctors_start__ = .); + KEEP(*(SORT(.init_array.*))) + KEEP(*(.init_array)) + PROVIDE(__ctors_end__ = .); + } > SRAM + .dtors : + { + PROVIDE(__dtors_start__ = .); + KEEP(*(SORT(.fini_array.*))) + KEEP(*(.fini_array)) + PROVIDE(__dtors_end__ = .); + } > SRAM + .stack : + { + . = ALIGN(64); + __stack_start__ = .; + . += 8192; + __stack_cpu0 = .; + . += 8192; + __stack_cpu1 = .; + } > SRAM + . = ALIGN(8); + .osdebug : + { + _osdebug_start = .; + . += 87K; + _osdebug_end = .; + } > SRAM + . = ALIGN(8); + .sbss : + { + __bss_start = .; + *(.sbss) + *(.sbss.*) + *(.dynsbss) + *(.scommon) + } > SRAM + .bss : + { + *(.bss) + *(.bss.*) + *(.dynbss) + *(COMMON) + __bss_end = .; + } > SRAM + _end = .; + .stab 0 : { *(.stab) } + .stabstr 0 : { *(.stabstr) } + .stab.excl 0 : { *(.stab.excl) } + .stab.exclstr 0 : { *(.stab.exclstr) } + .stab.index 0 : { *(.stab.index) } + .stab.indexstr 0 : { *(.stab.indexstr) } + .comment 0 : { *(.comment) } + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } +} diff --git a/documentation/3.kernel/INDEX.md b/documentation/3.kernel/INDEX.md index 8274016010b..de33574cdd7 100644 --- a/documentation/3.kernel/INDEX.md +++ b/documentation/3.kernel/INDEX.md @@ -1,4 +1,4 @@ -@page page_kernel_core Kenrel +@page page_kernel_core Kernel - @subpage page_kernel_basics - @subpage page_thread_management