diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-17 16:15:55 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-17 16:15:55 -0500 |
commit | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch) | |
tree | a8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /arch/mips/lib/Makefile | |
parent | 406089d01562f1e2bf9f089fd7637009ebaad589 (diff) |
Patched in Tegra support.
Diffstat (limited to 'arch/mips/lib/Makefile')
-rw-r--r-- | arch/mips/lib/Makefile | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/arch/mips/lib/Makefile b/arch/mips/lib/Makefile index eeddc58802e..b2cad4fd5fc 100644 --- a/arch/mips/lib/Makefile +++ b/arch/mips/lib/Makefile | |||
@@ -2,16 +2,33 @@ | |||
2 | # Makefile for MIPS-specific library files.. | 2 | # Makefile for MIPS-specific library files.. |
3 | # | 3 | # |
4 | 4 | ||
5 | lib-y += bitops.o csum_partial.o delay.o memcpy.o memset.o \ | 5 | lib-y += csum_partial.o delay.o memcpy.o memcpy-inatomic.o memset.o \ |
6 | mips-atomic.o strlen_user.o strncpy_user.o \ | 6 | strlen_user.o strncpy_user.o strnlen_user.o uncached.o |
7 | strnlen_user.o uncached.o | ||
8 | 7 | ||
9 | obj-y += iomap.o | 8 | obj-y += iomap.o |
10 | obj-$(CONFIG_PCI) += iomap-pci.o | 9 | obj-$(CONFIG_PCI) += iomap-pci.o |
11 | 10 | ||
12 | obj-$(CONFIG_CPU_GENERIC_DUMP_TLB) += dump_tlb.o | 11 | obj-$(CONFIG_CPU_LOONGSON2) += dump_tlb.o |
12 | obj-$(CONFIG_CPU_MIPS32) += dump_tlb.o | ||
13 | obj-$(CONFIG_CPU_MIPS64) += dump_tlb.o | ||
14 | obj-$(CONFIG_CPU_NEVADA) += dump_tlb.o | ||
15 | obj-$(CONFIG_CPU_R10000) += dump_tlb.o | ||
13 | obj-$(CONFIG_CPU_R3000) += r3k_dump_tlb.o | 16 | obj-$(CONFIG_CPU_R3000) += r3k_dump_tlb.o |
17 | obj-$(CONFIG_CPU_R4300) += dump_tlb.o | ||
18 | obj-$(CONFIG_CPU_R4X00) += dump_tlb.o | ||
19 | obj-$(CONFIG_CPU_R5000) += dump_tlb.o | ||
20 | obj-$(CONFIG_CPU_R5432) += dump_tlb.o | ||
21 | obj-$(CONFIG_CPU_R5500) += dump_tlb.o | ||
22 | obj-$(CONFIG_CPU_R6000) += | ||
23 | obj-$(CONFIG_CPU_R8000) += | ||
24 | obj-$(CONFIG_CPU_RM7000) += dump_tlb.o | ||
25 | obj-$(CONFIG_CPU_RM9000) += dump_tlb.o | ||
26 | obj-$(CONFIG_CPU_SB1) += dump_tlb.o | ||
14 | obj-$(CONFIG_CPU_TX39XX) += r3k_dump_tlb.o | 27 | obj-$(CONFIG_CPU_TX39XX) += r3k_dump_tlb.o |
28 | obj-$(CONFIG_CPU_TX49XX) += dump_tlb.o | ||
29 | obj-$(CONFIG_CPU_VR41XX) += dump_tlb.o | ||
30 | obj-$(CONFIG_CPU_CAVIUM_OCTEON) += dump_tlb.o | ||
31 | obj-$(CONFIG_CPU_XLR) += dump_tlb.o | ||
15 | 32 | ||
16 | # libgcc-style stuff needed in the kernel | 33 | # libgcc-style stuff needed in the kernel |
17 | obj-y += ashldi3.o ashrdi3.o cmpdi2.o lshrdi3.o ucmpdi2.o | 34 | obj-y += ashldi3.o ashrdi3.o cmpdi2.o lshrdi3.o ucmpdi2.o |