summaryrefslogtreecommitdiff
path: root/v/link.ld
diff options
context:
space:
mode:
Diffstat (limited to 'v/link.ld')
l---------[-rw-r--r--]v/link.ld46
1 files changed, 1 insertions, 45 deletions
diff --git a/v/link.ld b/v/link.ld
index 3ae9717..86b45f9 100644..120000
--- a/v/link.ld
+++ b/v/link.ld
@@ -1,45 +1 @@
-/*======================================================================*/
-/* Proxy kernel linker script */
-/*======================================================================*/
-/* This is the linker script used when building the proxy kernel. */
-
-/*----------------------------------------------------------------------*/
-/* Setup */
-/*----------------------------------------------------------------------*/
-
-/* The OUTPUT_ARCH command specifies the machine architecture where the
- argument is one of the names used in the BFD library. More
- specifically one of the entires in bfd/cpu-mips.c */
-
-OUTPUT_ARCH( "riscv" )
-
-/*----------------------------------------------------------------------*/
-/* Sections */
-/*----------------------------------------------------------------------*/
-
-SECTIONS
-{
-
- /* text: test code section */
- . = 0;
- .text :
- {
- *(.text)
- }
-
- /* data: Initialized data segment */
- .data ALIGN(0x2000):
- {
- *(.data)
- }
-
- /* bss: Initialized bss segment */
- .bss ALIGN(0x2000):
- {
- *(.bss)
- }
-
- /* End of uninitalized bss segement */
- _end = .;
-}
-
+../p/link.ld \ No newline at end of file