move arm-specific translation units out of arch/arm/src, to src/*/arm
authorRich Felker <dalias@aerifal.cx>
Fri, 22 Jan 2016 00:02:21 +0000 (00:02 +0000)
committerRich Felker <dalias@aerifal.cx>
Fri, 22 Jan 2016 00:02:21 +0000 (00:02 +0000)
commite617b9eea9d45b170eabadf5ca96ca0536c538be
treea06d433fd4219466e4b27f248e332f9e0482dd5d
parent397f0a6a7d798b0e3f636fe053cad9c483e011fb
move arm-specific translation units out of arch/arm/src, to src/*/arm

this is possible with the new build system that allows src/*/$(ARCH)/*
files which do not shadow a file in the parent directory, and yields a
more logical organization. eventually it will be possible to remove
arch/*/src from the build system.
17 files changed:
arch/arm/src/__aeabi_atexit.c [deleted file]
arch/arm/src/__aeabi_memclr.c [deleted file]
arch/arm/src/__aeabi_memcpy.c [deleted file]
arch/arm/src/__aeabi_memmove.c [deleted file]
arch/arm/src/__aeabi_memset.c [deleted file]
arch/arm/src/__set_thread_area.c [deleted file]
arch/arm/src/atomics.s [deleted file]
arch/arm/src/find_exidx.c [deleted file]
src/exit/arm/__aeabi_atexit.c [new file with mode: 0644]
src/ldso/arm/find_exidx.c [new file with mode: 0644]
src/string/arm/__aeabi_memclr.c [new file with mode: 0644]
src/string/arm/__aeabi_memcpy.c [new file with mode: 0644]
src/string/arm/__aeabi_memmove.c [new file with mode: 0644]
src/string/arm/__aeabi_memset.c [new file with mode: 0644]
src/thread/arm/__set_thread_area.c [new file with mode: 0644]
src/thread/arm/__set_thread_area.s [deleted file]
src/thread/arm/atomics.s [new file with mode: 0644]