diff options
author | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-01-24 16:04:07 +0100 |
---|---|---|
committer | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-01-24 17:48:33 +0100 |
commit | dcca150f838ebc31b6fc0ec750cc0da1ef01f837 (patch) | |
tree | 4c861e96fa50fae99438a41c7d33ed9830006aed /tests/tcg/mips/mips64-dspr2/mips_boot.lds | |
parent | 5e0aa63b084d6a99bbb74cfc5ad9852f7746f469 (diff) |
tests: tcg: mips: Remove old directories
Remove old test directories.
Reviewed-by: Aleksandar Rikalo <arikalo@wavecomp.com>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Diffstat (limited to 'tests/tcg/mips/mips64-dspr2/mips_boot.lds')
-rw-r--r-- | tests/tcg/mips/mips64-dspr2/mips_boot.lds | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/tcg/mips/mips64-dspr2/mips_boot.lds b/tests/tcg/mips/mips64-dspr2/mips_boot.lds deleted file mode 100644 index bd7c0c0f3f..0000000000 --- a/tests/tcg/mips/mips64-dspr2/mips_boot.lds +++ /dev/null @@ -1,31 +0,0 @@ -OUTPUT_ARCH(mips) -SECTIONS -{ - . = 0xffffffff80100000; - . = ALIGN((1 << 13)); - .text : - { - *(.text) - *(.rodata) - *(.rodata.*) - } - - __init_begin = .; - . = ALIGN((1 << 12)); - .init.text : AT(ADDR(.init.text) - 0) - { - *(.init.text) - } - .init.data : AT(ADDR(.init.data) - 0) - { - *(.init.data) - } - . = ALIGN((1 << 12)); - __init_end = .; - - . = ALIGN((1 << 13)); - .data : - { - *(.data) - } -} |