c4ffccddd5
This patch adds the Kconfig and Makefile for the new S5P6440 machine and platform directories. It also updates arch/arm Kconfig and Makefiles to include the support for the new S5P6440 CPU. Signed-off-by: Kukjin Kim <kgene.kim@samsung.com> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
24 lines
426 B
Makefile
24 lines
426 B
Makefile
# arch/arm/plat-s5p/Makefile
|
|
#
|
|
# Copyright (c) 2009 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com/
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n := dummy.o
|
|
obj- :=
|
|
|
|
# Core files
|
|
|
|
obj-y += dev-uart.o
|
|
obj-y += cpu.o
|
|
obj-y += clock.o
|
|
obj-y += irq.o
|
|
obj-y += setup-i2c0.o
|
|
|
|
# CPU support
|
|
|
|
obj-$(CONFIG_CPU_S5P6440_INIT) += s5p6440-init.o
|
|
obj-$(CONFIG_CPU_S5P6440_CLOCK) += s5p6440-clock.o
|