X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=mt%2Fcommon%2Ftest-mt.ld;fp=mt%2Fcommon%2Ftest-mt.ld;h=0000000000000000000000000000000000000000;hb=5fe2ce69dcd1d0ddb42c4edffac7ab11d939ca45;hp=55230328d8a48b8569e867a3d9f4bfbeaa1dd2fd;hpb=5b13eb6cd5aa3e73fb477414f1866e7b9cbeaf3f;p=riscv-tests.git diff --git a/mt/common/test-mt.ld b/mt/common/test-mt.ld deleted file mode 100644 index 5523032..0000000 --- a/mt/common/test-mt.ld +++ /dev/null @@ -1,45 +0,0 @@ -/*======================================================================*/ -/* 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" ) - -/* The ENTRY command specifies the entry point (ie. first instruction - to execute). The symbol _start should be defined in each test. */ - -ENTRY( _start ) - -/*----------------------------------------------------------------------*/ -/* Sections */ -/*----------------------------------------------------------------------*/ - -SECTIONS -{ - - /* text: test code section */ - . = 0x00002000; - .text : - { - crt-mt.o(.text) - *(.text) - } - - /* data: Initialized data segment */ - .data : - { - *(.data) - } - - /* End of uninitalized data segement */ - _end = .; -} -