forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'for-linus' of git://github.com/gregungerer/m68knommu
* 'for-linus' of git://github.com/gregungerer/m68knommu: m68k: drop unused Kconfig symbols m68k: drop unused Kconfig symbols m68knommu: create common externs for _ram* vars m68knommu: remove extern declarations of memory_start/memory_end from mm/init m68knommu: use generic section names in mm/init code m68knommu: use generic section names in setup code m68k: merge the mmu and non-mmu traps.c files m68k: move hardware vector setting from traps.c to its own file m68k: merge mmu and non-mmu include/asm/entry.h files m68k: merge the mmu and non-mmu kernel/Makefiles m68k: merge mmu and non-mmu arch Makefiles m68k: reorganize Kconfig options to improve mmu/non-mmu selections m68knommu: fix problems with SPI/GPIO on ColdFire 520x m68k: fix memcpy to unmatched/unaligned source and dest on 68000
- Loading branch information
Showing
35 changed files
with
2,596 additions
and
3,208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
if MMU | ||
|
||
comment "Bus Support" | ||
|
||
config NUBUS | ||
bool | ||
depends on MAC | ||
default y | ||
|
||
config ZORRO | ||
bool "Amiga Zorro (AutoConfig) bus support" | ||
depends on AMIGA | ||
help | ||
This enables support for the Zorro bus in the Amiga. If you have | ||
expansion cards in your Amiga that conform to the Amiga | ||
AutoConfig(tm) specification, say Y, otherwise N. Note that even | ||
expansion cards that do not fit in the Zorro slots but fit in e.g. | ||
the CPU slot may fall in this category, so you have to say Y to let | ||
Linux use these. | ||
|
||
config AMIGA_PCMCIA | ||
bool "Amiga 1200/600 PCMCIA support (EXPERIMENTAL)" | ||
depends on AMIGA && EXPERIMENTAL | ||
help | ||
Include support in the kernel for pcmcia on Amiga 1200 and Amiga | ||
600. If you intend to use pcmcia cards say Y; otherwise say N. | ||
|
||
config ISA | ||
bool | ||
depends on Q40 || AMIGA_PCMCIA | ||
default y | ||
help | ||
Find out whether you have ISA slots on your motherboard. ISA is the | ||
name of a bus system, i.e. the way the CPU talks to the other stuff | ||
inside your box. Other bus systems are PCI, EISA, MicroChannel | ||
(MCA) or VESA. ISA is an older system, now being displaced by PCI; | ||
newer boards don't support it. If you have ISA, say Y, otherwise N. | ||
|
||
config GENERIC_ISA_DMA | ||
def_bool ISA | ||
|
||
source "drivers/pci/Kconfig" | ||
|
||
source "drivers/zorro/Kconfig" | ||
|
||
endif | ||
|
||
if !MMU | ||
|
||
config ISA_DMA_API | ||
def_bool !M5272 | ||
|
||
source "drivers/pcmcia/Kconfig" | ||
|
||
endif |
Oops, something went wrong.