diff options
author | Greg Ungerer <gerg@uclinux.org> | 2011-10-18 08:26:11 +0200 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2011-12-30 01:20:39 +0100 |
commit | 0e6782c880e921106de645554939a5a714d8c865 (patch) | |
tree | 726fd93f582bdecbeaea59be09ca2a377b951fc1 /arch/m68k/Kconfig | |
parent | m68k: ColdFire V4e MMU paging init code and miss handler (diff) | |
download | linux-0e6782c880e921106de645554939a5a714d8c865.tar.xz linux-0e6782c880e921106de645554939a5a714d8c865.zip |
m68k: compile appropriate mm arch files for ColdFire MMU support
Create a config symbol to enable when using a ColdFire MMU. We then
use that to only compile the necessary arch mm files.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Matt Waddel <mwaddel@yahoo.com>
Acked-by: Kurt Mahan <kmahan@xmission.com>
Diffstat (limited to 'arch/m68k/Kconfig')
-rw-r--r-- | arch/m68k/Kconfig | 5 |
1 files changed, 4 insertions, 1 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 config MMU_MOTOROLA bool +config MMU_COLDFIRE + bool + config MMU_SUN3 bool - depends on MMU && !MMU_MOTOROLA + depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE menu "Platform setup" |