diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-24 18:23:01 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-24 19:43:52 +0100 |
commit | eee119de6a2bd0487e91daf69e7962351e2a3c9c (patch) | |
tree | e0e3bbe6d234e30216a83b65abafadf9f4df75f3 /arch/arm | |
parent | 965df7faefabdd5f571b5eb46d45470223c91e12 (diff) |
Dummy software compiles; fixed a few linking issues. Also, most of the kernel syscalls are missing.
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/lpc17xx/ldscript-mpu | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/arch/arm/lpc17xx/ldscript-mpu b/arch/arm/lpc17xx/ldscript-mpu index ce71313..3af58a9 100644 --- a/arch/arm/lpc17xx/ldscript-mpu +++ b/arch/arm/lpc17xx/ldscript-mpu @@ -148,10 +148,11 @@ SECTIONS __cs3_region_size_rom = LENGTH(rom); __cs3_region_num = 1; - .privileged_data : + .data : { + __cs3_region_start_ram = .; __privileged_data_start__ = .; - *(.priviledge_data) + *( privileged_data ) __privileged_data_end___len = . - __privileged_data_start__ - 1 ; __privileged_data_end___len |= __privileged_data_end___len >> 1 ; __privileged_data_end___len |= __privileged_data_end___len >> 2 ; @@ -161,11 +162,6 @@ SECTIONS . = ALIGN( MAX( __privileged_data_end___len + 1, 32 ) ) ; __privileged_data_end__ = .; - } >ram - - .data : - { - __cs3_region_start_ram = .; *(.cs3.region-head.ram) KEEP(*(.jcr)) *(.got.plt) *(.got) |