9b8417556c
Patch from Lennert Buytenhek This patch adds support for the Cirrus Logic EDB9315A, an evaluation board based on the Cirrus Logic EP9315 SoC, with 64M RAM, two USB host ports, audio in/out, three serial ports, 10/100 ethernet, and IDE, VGA, and LCD interfaces. The EDB9315A is a low-cost version of the EDB9315, and has only 16M of NOR flash, while the EDB9315 has 32M. Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
13 lines
300 B
Makefile
13 lines
300 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
obj-y := core.o clock.o
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
obj-$(CONFIG_MACH_EDB9302) += edb9302.o
|
|
obj-$(CONFIG_MACH_EDB9315) += edb9315.o
|
|
obj-$(CONFIG_MACH_EDB9315A) += edb9315a.o
|
|
obj-$(CONFIG_MACH_GESBC9312) += gesbc9312.o
|
|
obj-$(CONFIG_MACH_TS72XX) += ts72xx.o
|