diff options
author | Ley Foon Tan <lftan@altera.com> | 2014-11-06 08:20:19 +0100 |
---|---|---|
committer | Ley Foon Tan <lftan@altera.com> | 2014-12-08 05:56:06 +0100 |
commit | 2fc8483fdcde767795402a38a53e647811dc9abf (patch) | |
tree | 01c734b5191c6ddd5c095fb2a08494720b06f817 /arch/nios2/mm | |
parent | Documentation: Add documentation for Nios2 architecture (diff) | |
download | linux-2fc8483fdcde767795402a38a53e647811dc9abf.tar.xz linux-2fc8483fdcde767795402a38a53e647811dc9abf.zip |
nios2: Build infrastructure
This patch adds Makefile and Kconfig files required for building a
nios2 kernel.
Signed-off-by: Ley Foon Tan <lftan@altera.com>
Diffstat (limited to 'arch/nios2/mm')
-rw-r--r-- | arch/nios2/mm/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/nios2/mm/Makefile b/arch/nios2/mm/Makefile new file mode 100644 index 000000000000..3cbd0840873c --- /dev/null +++ b/arch/nios2/mm/Makefile @@ -0,0 +1,14 @@ +# +# Makefile for the Nios2-specific parts of the memory manager. +# + +obj-y += cacheflush.o +obj-y += dma-mapping.o +obj-y += extable.o +obj-y += fault.o +obj-y += init.o +obj-y += ioremap.o +obj-y += mmu_context.o +obj-y += pgtable.o +obj-y += tlb.o +obj-y += uaccess.o |