-
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.
Adds MX1 architecture to platform MXC. It will supersede mach-imx and let it die. Signed-off-by: Paulius Zaleckas <paulius.zaleckas@teltonika.lt> Signed-off-by: Darius Augulis <augulis.darius@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
- Loading branch information
Paulius Zaleckas
authored and
Sascha Hauer
committed
Dec 16, 2008
1 parent
d133d6a
commit cfca8b5
Showing
16 changed files
with
1,264 additions
and
5 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,14 @@ | ||
if ARCH_MX1 | ||
|
||
comment "MX1 Platforms" | ||
|
||
config MACH_MXLADS | ||
bool | ||
|
||
config ARCH_MX1ADS | ||
bool "MX1ADS platform" | ||
select MACH_MXLADS | ||
help | ||
Say Y here if you are using Motorola MX1ADS/MXLADS boards | ||
|
||
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,10 @@ | ||
# | ||
# Makefile for the linux kernel. | ||
# | ||
|
||
# Object file lists. | ||
|
||
obj-y += generic.o clock.o devices.o | ||
|
||
# Specific board support | ||
obj-$(CONFIG_ARCH_MX1ADS) += mx1ads.o |
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,4 @@ | ||
zreladdr-y := 0x08008000 | ||
params_phys-y := 0x08000100 | ||
initrd_phys-y := 0x08800000 | ||
|
Oops, something went wrong.