From c626fe70041bf5d21b27d0f92a0790df07d5d9f6 Mon Sep 17 00:00:00 2001 From: Marcin Bukat Date: Sat, 18 Oct 2014 20:16:10 +0200 Subject: atj213x: e100/150 lcd test binary Change-Id: I3f9fa21dcb33d1cd3081d0c995adfb44e085dd7a --- utils/atj2137/adfuload/test_binary/lcm/test.lds | 51 +++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 utils/atj2137/adfuload/test_binary/lcm/test.lds (limited to 'utils/atj2137/adfuload/test_binary/lcm/test.lds') diff --git a/utils/atj2137/adfuload/test_binary/lcm/test.lds b/utils/atj2137/adfuload/test_binary/lcm/test.lds new file mode 100644 index 0000000000..f9007d4bba --- /dev/null +++ b/utils/atj2137/adfuload/test_binary/lcm/test.lds @@ -0,0 +1,51 @@ +OUTPUT_ARCH(mips) +ENTRY(main) + +SECTIONS +{ + + +.text 0xa0000000 : + { + relocstart = .; + *(.init.text*) + *(.text*) + } + + . = ALIGN(0x1000); + _irqbase = .; + +.exception_handlers : + { + . += 0x200; + *(.irq_vector*) + } + +.data : + { + *(.rodata*) + *(.data*) + relocend = .; + } + +.bss : + { + bssbegin = .; + *(.sbss*) + *(.bss*) + *(COMMON) + *(.scommon*) + bssend = .; + } + +.stack (NOLOAD) : + { + stackbegin = .; + . += 0x2000; + stackend = .; + irqstackbegin = .; + . += 0x400; + irqstackend = .; + } + +} -- cgit v1.2.3