diff options
-rw-r--r-- | arch/m68k/Kconfig | 5 | ||||
-rw-r--r-- | arch/m68k/mm/Makefile | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig index 5f860cf67afc..330eb88108e7 100644 --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig | |||
@@ -88,9 +88,12 @@ config MMU | |||
88 | config MMU_MOTOROLA | 88 | config MMU_MOTOROLA |
89 | bool | 89 | bool |
90 | 90 | ||
91 | config MMU_COLDFIRE | ||
92 | bool | ||
93 | |||
91 | config MMU_SUN3 | 94 | config MMU_SUN3 |
92 | bool | 95 | bool |
93 | depends on MMU && !MMU_MOTOROLA | 96 | depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE |
94 | 97 | ||
95 | menu "Platform setup" | 98 | menu "Platform setup" |
96 | 99 | ||
diff --git a/arch/m68k/mm/Makefile b/arch/m68k/mm/Makefile index 09cadf1058d5..cfbf3205724a 100644 --- a/arch/m68k/mm/Makefile +++ b/arch/m68k/mm/Makefile | |||
@@ -4,6 +4,8 @@ | |||
4 | 4 | ||
5 | obj-y := init.o | 5 | obj-y := init.o |
6 | 6 | ||
7 | obj-$(CONFIG_MMU) += cache.o fault.o hwtest.o | 7 | obj-$(CONFIG_MMU) += cache.o fault.o |
8 | obj-$(CONFIG_MMU_MOTOROLA) += kmap.o memory.o motorola.o | 8 | obj-$(CONFIG_MMU_MOTOROLA) += kmap.o memory.o motorola.o hwtest.o |
9 | obj-$(CONFIG_MMU_SUN3) += sun3kmap.o sun3mmu.o | 9 | obj-$(CONFIG_MMU_SUN3) += sun3kmap.o sun3mmu.o hwtest.o |
10 | obj-$(CONFIG_MMU_COLDFIRE) += kmap.o memory.o mcfmmu.o | ||
11 | |||