From 04b236aac5369e4c744796cabf6304324a48fe7d Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Sat, 9 May 2015 16:39:04 -0700 Subject: Update to privileged architecture version 1.7 --- pm/link.ld | 45 +-------------------------------------------- 1 file changed, 1 insertion(+), 44 deletions(-) mode change 100644 => 120000 pm/link.ld (limited to 'pm/link.ld') diff --git a/pm/link.ld b/pm/link.ld deleted file mode 100644 index 694e906..0000000 --- a/pm/link.ld +++ /dev/null @@ -1,44 +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 */ - . = 0; - .text : - { - *(.text) - } - - /* data: Initialized data segment */ - .data : - { - *(.data) - } - - /* End of uninitalized data segement */ - _end = .; -} - diff --git a/pm/link.ld b/pm/link.ld new file mode 120000 index 0000000..86b45f9 --- /dev/null +++ b/pm/link.ld @@ -0,0 +1 @@ +../p/link.ld \ No newline at end of file -- cgit v1.1