diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2010-05-30 07:27:22 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-08-05 08:25:44 -0400 |
commit | 9aeb404b4cfed41fdfd01e6fb3cc995c327ba98e (patch) | |
tree | 093d1a06d9161e36f5856f6d1b0cc82675eda339 | |
parent | 78e6f4c03d51e4004866918a1482d48624e38d67 (diff) |
MIPS: Introduce arch/mips/Kbuild
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
To: linux-mips <linux-mips@linux-mips.org>
To: Wu Zhangjin <wuzhangjin@gmail.com>
Patchwork: https://patchwork.linux-mips.org/patch/1300/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/Kbuild | 6 | ||||
-rw-r--r-- | arch/mips/Makefile | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/arch/mips/Kbuild b/arch/mips/Kbuild new file mode 100644 index 000000000000..a18eb5d4d40e --- /dev/null +++ b/arch/mips/Kbuild | |||
@@ -0,0 +1,6 @@ | |||
1 | # mips object files | ||
2 | # The object files are linked as core-y files would be linked | ||
3 | |||
4 | obj-y += kernel/ | ||
5 | obj-y += mm/ | ||
6 | obj-y += math-emu/ | ||
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 0b9c01add0a0..d39be4708289 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
@@ -706,7 +706,8 @@ head-y := arch/mips/kernel/head.o arch/mips/kernel/init_task.o | |||
706 | 706 | ||
707 | libs-y += arch/mips/lib/ | 707 | libs-y += arch/mips/lib/ |
708 | 708 | ||
709 | core-y += arch/mips/kernel/ arch/mips/mm/ arch/mips/math-emu/ | 709 | # See arch/mips/Kbuild for content of core part of the kernel |
710 | core-y += arch/mips/ | ||
710 | 711 | ||
711 | drivers-$(CONFIG_OPROFILE) += arch/mips/oprofile/ | 712 | drivers-$(CONFIG_OPROFILE) += arch/mips/oprofile/ |
712 | 713 | ||