-
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.
[ARM] 5477/1: Freescale STMP platform support [6/10]
Sources: common STMP3xxx platform support Signed-off-by: dmitry pervushin <dpervushin@embeddedalley.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
- Loading branch information
dmitry pervushin
authored and
Russell King
committed
Apr 27, 2009
1 parent
e317872
commit 5cccd37
Showing
9 changed files
with
2,580 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
if ARCH_STMP3XXX | ||
|
||
menu "Freescale STMP3xxx implementations" | ||
|
||
choice | ||
prompt "Select STMP3xxx chip family" | ||
|
||
config ARCH_STMP37XX | ||
bool "Freescale SMTP37xx" | ||
select CPU_ARM926T | ||
---help--- | ||
STMP37xx refers to 3700 through 3769 chips | ||
|
||
config ARCH_STMP378X | ||
bool "Freescale STMP378x" | ||
select CPU_ARM926T | ||
---help--- | ||
STMP378x refers to 3780 through 3789 chips | ||
|
||
endchoice | ||
|
||
choice | ||
prompt "Select STMP3xxx board type" | ||
|
||
config MACH_STMP37XX | ||
depends on ARCH_STMP37XX | ||
bool "Freescale STMP37xx development board" | ||
|
||
config MACH_STMP378X | ||
depends on ARCH_STMP378X | ||
bool "Freescale STMP378x development board" | ||
|
||
endchoice | ||
|
||
endmenu | ||
|
||
endif |
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,5 @@ | ||
# | ||
# Makefile for the linux kernel. | ||
# | ||
# Object file lists. | ||
obj-y += core.o timer.o irq.o dma.o clock.o pinmux.o |
Oops, something went wrong.