diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-03-01 15:25:29 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-03-01 19:05:00 -0500 |
commit | a1d74a08e4f671edfc5b5ad575c3f97077e37154 (patch) | |
tree | ca7d5bfed29cf662392c64690828568cdd4604c9 /lib/samd51/samd51a/gcc | |
parent | fbef144e7b32ce9d70866902cc11eed63104c7d5 (diff) | |
download | kutter-a1d74a08e4f671edfc5b5ad575c3f97077e37154.tar.gz kutter-a1d74a08e4f671edfc5b5ad575c3f97077e37154.tar.xz kutter-a1d74a08e4f671edfc5b5ad575c3f97077e37154.zip |
lib: Remove samd21/samd51 customizations that are no longer necessary
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'lib/samd51/samd51a/gcc')
-rw-r--r-- | lib/samd51/samd51a/gcc/gcc/samd51g19a_flash.ld | 2 | ||||
-rw-r--r-- | lib/samd51/samd51a/gcc/gcc/samd51j19a_flash.ld | 2 | ||||
-rw-r--r-- | lib/samd51/samd51a/gcc/gcc/samd51n19a_flash.ld | 2 | ||||
-rw-r--r-- | lib/samd51/samd51a/gcc/gcc/samd51p20a_flash.ld | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/samd51/samd51a/gcc/gcc/samd51g19a_flash.ld b/lib/samd51/samd51a/gcc/gcc/samd51g19a_flash.ld index 551597dc..bee9c68d 100644 --- a/lib/samd51/samd51a/gcc/gcc/samd51g19a_flash.ld +++ b/lib/samd51/samd51a/gcc/gcc/samd51g19a_flash.ld @@ -35,7 +35,7 @@ SEARCH_DIR(.) /* Memory Spaces Definitions */
MEMORY
{
- rom (rx) : ORIGIN = 0x00000000 + FLASH_START, LENGTH = 0x00080000 - FLASH_START
+ rom (rx) : ORIGIN = 0x00000000, LENGTH = 0x00080000
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00030000
bkupram (rwx) : ORIGIN = 0x47000000, LENGTH = 0x00002000
qspi (rwx) : ORIGIN = 0x04000000, LENGTH = 0x01000000
diff --git a/lib/samd51/samd51a/gcc/gcc/samd51j19a_flash.ld b/lib/samd51/samd51a/gcc/gcc/samd51j19a_flash.ld index 07ee9864..3dfbe0d4 100644 --- a/lib/samd51/samd51a/gcc/gcc/samd51j19a_flash.ld +++ b/lib/samd51/samd51a/gcc/gcc/samd51j19a_flash.ld @@ -35,7 +35,7 @@ SEARCH_DIR(.) /* Memory Spaces Definitions */
MEMORY
{
- rom (rx) : ORIGIN = 0x00000000 + FLASH_START, LENGTH = 0x00080000 - FLASH_START
+ rom (rx) : ORIGIN = 0x00000000, LENGTH = 0x00080000
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00030000
bkupram (rwx) : ORIGIN = 0x47000000, LENGTH = 0x00002000
qspi (rwx) : ORIGIN = 0x04000000, LENGTH = 0x01000000
diff --git a/lib/samd51/samd51a/gcc/gcc/samd51n19a_flash.ld b/lib/samd51/samd51a/gcc/gcc/samd51n19a_flash.ld index 1c595648..ae77ba71 100644 --- a/lib/samd51/samd51a/gcc/gcc/samd51n19a_flash.ld +++ b/lib/samd51/samd51a/gcc/gcc/samd51n19a_flash.ld @@ -35,7 +35,7 @@ SEARCH_DIR(.) /* Memory Spaces Definitions */
MEMORY
{
- rom (rx) : ORIGIN = 0x00000000 + FLASH_START, LENGTH = 0x00080000 - FLASH_START
+ rom (rx) : ORIGIN = 0x00000000, LENGTH = 0x00080000
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00030000
bkupram (rwx) : ORIGIN = 0x47000000, LENGTH = 0x00002000
qspi (rwx) : ORIGIN = 0x04000000, LENGTH = 0x01000000
diff --git a/lib/samd51/samd51a/gcc/gcc/samd51p20a_flash.ld b/lib/samd51/samd51a/gcc/gcc/samd51p20a_flash.ld index 4d8ad695..60f73b47 100644 --- a/lib/samd51/samd51a/gcc/gcc/samd51p20a_flash.ld +++ b/lib/samd51/samd51a/gcc/gcc/samd51p20a_flash.ld @@ -35,7 +35,7 @@ SEARCH_DIR(.) /* Memory Spaces Definitions */
MEMORY
{
- rom (rx) : ORIGIN = 0x00000000 + FLASH_START, LENGTH = 0x00100000 - FLASH_START
+ rom (rx) : ORIGIN = 0x00000000, LENGTH = 0x00100000
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00040000
bkupram (rwx) : ORIGIN = 0x47000000, LENGTH = 0x00002000
qspi (rwx) : ORIGIN = 0x04000000, LENGTH = 0x01000000
|